/* DoD SAFE inspired styling */

.safe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.safe-hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.safe-hero h1 {
  font-size: 28px;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
}

.safe-welcome {
  background: #f8f9fa;
  border-left: 4px solid #003366;
  padding: 20px;
  margin-bottom: 30px;
}

.safe-welcome h2 {
  margin: 0;
  color: #003366;
  font-size: 24px;
}

/* Main action cards */
.safe-main-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.safe-action-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.safe-action-card:hover {
  border-color: #003366;
  box-shadow: 0 4px 12px rgba(0,51,102,0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

.safe-action-card i {
  color: #003366;
  margin-bottom: 15px;
}

.safe-action-card h3 {
  color: #003366;
  margin: 10px 0;
  font-size: 20px;
  font-weight: 600;
}

.safe-action-card p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

/* Login section */
.safe-login-section {
  background: #f0f4f8;
  border: 2px solid #003366;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.safe-login-section h3 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 20px;
}

.safe-login-btn {
  display: inline-block;
  background: #003366;
  color: white !important;
  padding: 15px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.safe-login-btn:hover {
  background: #004080;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.safe-login-btn i {
  margin-right: 10px;
}

/* Guest section */
.safe-guest-section {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
}

.safe-guest-section h3 {
  color: #003366;
  margin-bottom: 10px;
}

.safe-pickup-btn {
  display: inline-block;
  background: #5a9fd4;
  color: white !important;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.safe-pickup-btn:hover {
  background: #4080b8;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Important notice */
.safe-notice-important {
  background: #fff3cd;
  border-left: 4px solid #ff9800;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.safe-notice-important h3 {
  color: #856404;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
}

.safe-notice-important h3 i {
  margin-right: 10px;
}

.safe-notice-important ul {
  margin: 0;
  padding-left: 20px;
}

.safe-notice-important li {
  color: #856404;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* FAQ section */
.safe-faq {
  background: #e8f4f8;
  border-left: 4px solid #5a9fd4;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.safe-faq h3 {
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
}

.safe-faq h3 i {
  margin-right: 10px;
}

.safe-faq ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.safe-faq li {
  margin-bottom: 10px;
}

.safe-faq a {
  color: #003366;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.safe-faq a:hover {
  color: #004080;
  text-decoration: underline;
}

.safe-faq a i {
  margin-right: 8px;
  color: #5a9fd4;
}

/* Admin section */
.safe-admin-section {
  background: #ffe6e6;
  border-left: 4px solid #d32f2f;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.safe-admin-section h3 {
  color: #c62828;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
}

.safe-admin-section h3 i {
  margin-right: 10px;
}

.safe-admin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.safe-admin-links a {
  background: white;
  color: #c62828;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #d32f2f;
  transition: all 0.3s ease;
}

.safe-admin-links a:hover {
  background: #c62828;
  color: white;
  text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .safe-hero h1 {
    font-size: 22px;
  }
  
  .safe-main-actions {
    grid-template-columns: 1fr;
  }
  
  .safe-container {
    padding: 10px;
  }
}


/* Green status bar */
.safe-status-bar {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.safe-status-bar i {
  margin-right: 8px;
}
