/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

/* Card Styles */
.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Typography */
h1 {
  margin-bottom: 25px;
  color: #2c3e50;
  font-size: 1.8em;
}

h2 {
  margin-bottom: 20px;
  color: #34495e;
  font-size: 1.5em;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  text-align: left;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

input, 
select, 
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

input:focus, 
select:focus, 
textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Error and Status Messages */
.error {
  color: #dc3545;
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
}

.status-green {
  background-color: #d4edda;
  color: #155724;
  padding: 12px;
  border-radius: 6px;
}

.status-orange {
  background-color: #fff3cd;
  color: #856404;
  padding: 12px;
  border-radius: 6px;
}

.status-red {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px;
  border-radius: 6px;
}

/* User Info Display */
.user-info-display {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.user-info-display p {
  margin: 8px 0;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.user-info-display strong {
  color: #555;
  margin-right: 10px;
}

/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

#whatsapp-icon:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-overlay.show {
  display: flex;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  margin-top: 15px;
  color: #333;
  font-weight: 500;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 25px;
  right: 25px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.notification.success {
  background-color: #4caf50;
}

.notification.error {
  background-color: #f44336;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-icon {
  font-size: 22px;
}

.notification-close {
  margin-left: 12px;
  cursor: pointer;
  opacity: 0.7;
  font-size: 20px;
  background: none;
  border: none;
  color: white;
}

.notification-close:hover {
  opacity: 1;
}

/* Admin Dashboard Styles */
#admin-dashboard,
#approved-dashboard {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
}

#admin-dashboard .card,
#approved-dashboard .card {
  width: 100%;
  max-width: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.stats-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
  margin-bottom: 10px;
  font-size: 1em;
  color: #666;
}

.stat-card p {
  font-size: 2em;
  font-weight: bold;
  color: #007bff;
}

.rankings-table {
  width: 100%;
  margin-bottom: 30px;
  overflow-x: auto;
}

.rankings-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.rankings-table th,
.rankings-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.rankings-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.rankings-table tr:hover {
  background-color: #f1f3f5;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.nav-header h1 {
  margin-bottom: 0;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.approved-section {
  margin-top: 40px;
}

.approved-section h2 {
  margin-bottom: 20px;
}

.certificate-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.certificate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .card {
    padding: 20px;
    max-width: 100%;
  }

  .container {
    max-width: 100%;
  }

  #whatsapp-icon {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  #admin-dashboard,
  #approved-dashboard {
    padding: 10px;
  }

  .stats-cards {
    flex-direction: column;
  }

  .rankings-table {
    font-size: 0.9em;
  }

  .rankings-table th,
  .rankings-table td {
    padding: 10px;
  }

  .nav-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nav-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Ranking Highlight Styles */
.top-3 {
  font-weight: bold;
}

.rank-1 {
  background-color: #fff3cd;
}

.rank-2 {
  background-color: #f8f9fa;
}

.rank-3 {
  background-color: #fff5f5;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e9ecef;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-fill {
  height: 100%;
  background-color: #28a745;
  transition: width 0.3s ease;
}

/* Submitting State */
.submitting {
  opacity: 0.7;
  pointer-events: none;
}

/* Admin Header and Buttons */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.refresh-icon {
  display: inline-block;
  margin-right: 5px;
}

.submissions-container {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.submissions-header {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.submission-card {
  background-color: white;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.submission-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.submission-info {
  margin-bottom: 15px;
}

.submission-info p {
  margin: 5px 0;
}

.submission-actions {
  display: flex;
  gap: 10px;
}

.btn-approve {
  background-color: #28a745;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-approve:hover {
  background-color: #218838;
}

.btn-view {
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-view:hover {
  background-color: #0056b3;
}

.maintenance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.maintenance-content {
  max-width: 600px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.maintenance-icon {
  font-size: 64px;
  margin-bottom: 20px;
  color: #3498db;
}

.maintenance-title {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 16px;
}

.maintenance-message {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.maintenance-contact {
  font-size: 14px;
  color: #888;
}

.maintenance-logout {
  margin-top: 20px;
  padding: 10px 20px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.maintenance-logout:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

/* Feedback Modal Styles */
/* Feedback Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.modal-header h2 {
  margin: 0;
  color: #333;
}

.feedback-list {
  max-height: 60vh;
  overflow-y: auto;
}

.feedback-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #dc3545;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.feedback-status {
  background-color: #dc3545;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
}

.feedback-date {
  color: #6c757d;
  font-size: 0.9em;
}

.feedback-body {
  line-height: 1.6;
}

.btn-reject {
  background-color: #dc3545;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-reject:hover {
  background-color: #bd2130;
}

.submission-actions .btn-reject {
  background-color: #dc3545;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submission-actions .btn-reject:hover {
  background-color: #bd2130;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modal-content {
      width: 95%;
      padding: 20px;
  }
}

.btn-reject {
  background-color: #dc3545;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-reject:hover {
  background-color: #bd2130;
}

/* Dashboard Section Styles */
.dashboard-section {
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dashboard-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
  padding: 30px;
  text-align: center;
}

.user-welcome {
  margin-bottom: 25px;
}

.user-welcome h1 {
  font-size: 1.5rem;
  color: #2c3e50;
}

.user-name {
  color: #007bff;
  font-weight: 600;
}

.user-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.user-info-card {
  background-color: #f1f3f6;
  border-radius: 10px;
  padding: 15px;
}

.info-label {
  color: #6c757d;
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.user-status-section {
  margin-bottom: 25px;
}

.status-banner {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 500;
}

.status-warning {
  background-color: #fff3cd;
  color: #856404;
}

.deadline-info {
  color: #6c757d;
  font-size: 0.9rem;
}

.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn {
  flex-grow: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
}

.btn-primary.btn-collect {
  background-color: #007bff;
  color: white;
  margin-top: 10px;
}

.btn-primary.btn-collect:hover {
  background-color: #0056b3;
}

@media (max-width: 480px) {
  .action-buttons {
      flex-direction: column;
  }

  .btn {
      width: 100%;
  }
}

/* Existing styles remain the same */

/* New styles for feedback and approved certificates sections */
#feedback-section,
#approved-certificates-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.feedback-item,
.approved-certificate-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
}

.feedback-header,
.certificate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.feedback-date,
.approval-date {
    color: #666;
    font-size: 0.8em;
}

.feedback-body,
.certificate-body {
    margin-top: 10px;
}

.dashboard-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.dashboard-buttons .btn-primary,
.dashboard-buttons .btn-secondary {
    flex-grow: 1;
}
/* Button Styles */
.btn-primary {
  width: 100%;
  padding: 12px 16px;
  background-color: #007bff; /* Bright blue */
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #0056b3; /* Slightly darker blue on hover */
}

.btn-primary:active {
  background-color: #004085; /* Even darker blue when pressed */
}

.btn-secondary {
  width: 100%;
  padding: 10px 16px;
  background-color: #6c757d; /* Gray color */
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #545b62;
}

.btn-secondary:active {
  background-color: #3e4144;
}

/* WhatsApp Button Specific Style */
#helpdesk-link {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  background-color: #25D366; /* WhatsApp green */
}

#helpdesk-link:hover {
  background-color: #128C7E;
}

/* Dashboard Button Styling */
.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}

/* Status Indication */
.status-red {
  color: #dc3545;
  font-weight: bold;
}

.status-orange {
  color: #ffc107;
  font-weight: bold;
}

.status-green {
  color: #28a745;
  font-weight: bold;
}
.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}

.additional-actions {
  display: flex;
  gap: 10px;
}

.additional-actions .btn-secondary {
  flex: 1;
  padding: 10px;
  font-size: 14px;
}

.helpdesk-contact {
  margin-top: 10px;
}

#helpdesk-link {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 10px;
  border-radius: 8px;
}

#helpdesk-link:hover {
  background-color: #128C7E;
}
.feedback-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.feedback-date {
  color: #666;
  font-size: 0.8em;
}

.feedback-body {
  margin-top: 10px;
}

.feedback-status {
  margin-bottom: 10px;
}

.feedback-description {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 4px;
}

#no-feedback-message {
  text-align: center;
  color: #666;
  padding: 20px;
}
#dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-color: #f4f4f4;
}

.dashboard-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  padding: 30px;
  text-align: center;
}

.welcome-title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.5;
}

.user-name {
  display: block;
  color: #007bff;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
}

.user-details {
  margin-bottom: 25px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f5;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #6c757d;
  font-weight: 500;
}

.detail-value {
  color: #2c3e50;
  font-weight: 600;
}

.status-row .detail-value {
  flex-grow: 0;
}

.status-badge {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9em;
  text-transform: uppercase;
}

.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.secondary-actions {
  display: flex;
  gap: 10px;
}

.btn-secondary {
  flex: 1;
  padding: 10px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #545b62;
}

.btn-helpdesk {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-helpdesk:hover {
  background-color: #128c7e;
}
/* Feedback Section Styling */
.feedback-container {
  margin: 20px 0;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 5px;
}

.feedback-description {
  color: #666;
  margin-top: 5px;
  font-size: 0.9rem;
}

.feedback-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feedback-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.feedback-title {
  flex: 1;
  min-width: 200px;
}

.feedback-title h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: #333;
}

.feedback-category {
  display: inline-block;
  background-color: #e0e0e0;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #555;
}

.feedback-date {
  font-size: 0.85rem;
  color: #666;
  margin-left: 10px;
}

.feedback-body {
  margin-bottom: 15px;
}

.feedback-status {
  margin-bottom: 10px;
}

.feedback-description {
  margin-bottom: 15px;
}

.feedback-description p {
  margin: 5px 0;
  white-space: pre-line;
  line-height: 1.5;
}

.feedback-details {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 15px;
}

.feedback-detail-row {
  margin-bottom: 5px;
}

.feedback-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

/* Button styles */
.btn-sm {
  padding: 5px 10px;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feedback-header {
      flex-direction: column;
  }
  
  .feedback-date {
      margin-left: 0;
      margin-top: 5px;
  }
  
  .feedback-title {
      margin-bottom: 10px;
  }
}
.form-hint {
  display: block;
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 5px;
}
