body {
    background-color: #f8f9fa;
}
.logo-bar {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    flex-wrap: wrap;
}
.logo-bar img {
    height: 50px;
}
.title-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 15px;
}
.login-card {
    max-width: 400px;
    margin: 100px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 767.98px) {
  .logo-bar {
    flex-direction: column;
    text-align: center;
  }

  .logo-bar > div:first-child {
    justify-content: center;
    width: 100%;
  }

  .logo-bar img {
    margin: 0 auto;
    display: block;
  }

  .title-text {
    margin: 10px 0 0 0;
    text-align: center;
  }

  /* Move buttons below and center only on mobile */
  .logo-bar > div:last-child {
    margin-top: 15px !important;
    text-align: center;
  }
}


.feedback-card {
    max-width: 1000px;
    margin: 0px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #fff;
}

.form-header {
    background-color: #006400;
    color: white;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.star-rating i {
    color: gold;
    cursor: pointer;
}
.star-rating i:hover {
    transform: scale(1.2);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #198754;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 6px 14px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}
.back-btn:hover {
    background-color: #157347;
    color: #fff;
    text-decoration: none;
}
.back-btn i {
    font-size: 14px;
}

.form-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.table th, .table td {
    text-align: center;
    vertical-align: middle;
}
.smiley {
    font-size: 20px;
}

.hidden {
    display: none;
}




.attachments .attachment-item {
    width: 100px;
    margin: 5px;
    text-align: center;
    position: relative;
}

.attachments .thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.attachments .thumb img,
.attachments .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attachments .thumb:hover {
    transform: scale(1.05);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}

.attachments small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Delete button inside thumbnail */
.attachments .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    display: none;
}

.attachments .attachment-item:hover .delete-btn {
    display: block;
}


.time-display {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}
.status {
    font-size: 1.2rem;
}