/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    background-color: #73767b;
}
.navbar a {
    color: white !important;
}

/* Dashboard table */
.table td, .table th {
    vertical-align: middle;
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Image Preview */
.img-preview {
    overflow: hidden;
    width: 160px;
    height: 160px;
    margin: 10px;
    border: 1px solid #ddd;
}

/* Drag and Drop area */
.photo-card {
    display: inline-block;
    margin: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background-color: white;
    cursor: move;
}
.photo-card img {
    max-width: 100%;
    height: auto;
}
.photo-card input {
    width: 100%;
    margin-top: 5px;
}

/* PDF Preview */
.pdf-photo {
    display: inline-block;
    margin: 5px;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 0.375rem;
}
.name-column{
  white-space: normal !important;
  word-break: break-word;
  max-width: 150px;
}
.actions-column{
    display: inline-block;        /* Keep buttons inline */
  margin: 2px; 
  white-space: nowrap;
}
.delete-photo-btn{
    background-color: #E57373;
    border-color: #E57373;
    color: #fff;
}

