/* Pending Approval Status Styles */

.pending-approval-notification {
  background-color: #fff3cd;
  border-bottom: 1px solid #ffeeba;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.pending-approval-notification .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pending-approval-notification p {
  margin: 0;
  color: #856404;
}

.close-notification {
  background: none;
  border: none;
  color: #856404;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 10px;
}

.pending-approval-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pending-approval-modal .modal-content {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pending-approval-modal h2 {
  color: #856404;
  margin-top: 0;
}

.pending-approval-modal .close-modal {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary.pending-approval {
  opacity: 0.9;
}

.blurred {
  filter: blur(4px);
  user-select: none;
}

/* Info Message Styles for Public Access */
.info-message {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-content {
  max-width: 400px;
  margin: 0 auto;
}

.info-content h3 {
  color: #495057;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 600;
}

.info-content p {
  color: #6c757d;
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-buttons .btn {
  min-width: 140px;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.action-buttons .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Error Message Enhancement */
.error-message {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  margin: 40px 0;
}

.error-content h3 {
  color: #721c24;
  margin-bottom: 16px;
}

.error-content p {
  color: #721c24;
  margin-bottom: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .action-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
