
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #2c2c2c;
  padding: 40px;
  margin: 0;
  line-height: 1.6;
}

/* Remove default body padding on landing page */
body.landing { padding: 0; }

/* Minimal utility classes to replace Tailwind CDN usage in templates */
.font-inter{font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}
.text-brand-red{color:#e53935}
.bg-brand-red{background-color:#e53935}
.bg-brand-red-dark{background-color:#c62828}

h1, h2, h3 {
  color: #e53935;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  font-weight: 700;
}

form, .card {
  background: #ffffff;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

button, .submit-btn {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

button:hover, .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

label {
  display: block;
  margin: 15px 0 8px;
  font-weight: 600;
  color: #2c2c2c;
  font-size: 14px;
}

input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="number"], 
input[type="file"],
select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  background: #fafbfc;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

input:focus, select:focus {
  border-color: #e53935;
  background: white;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

input[type="checkbox"] {
  margin-right: 8px;
  width: auto;
}

.summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #e53935;
  color: #2c2c2c;
}

.button-link {
  display: inline-block;
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 10px 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

th {
  background-color: #2c2c2c;
  color: white;
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
}

td {
  padding: 16px 20px;
  border-bottom: 1px solid #e1e5e9;
}

tr:hover {
  background-color: #f8f9fa;
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Navigation and header styles */
.header {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: white;
  padding: 20px 0;
  margin-bottom: 30px;
  border-radius: 12px;
}

.nav-link {
  color: #e53935;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c62828;
}

/* Message styles */
.message {
  padding: 15px 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 500;
}

.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.success {
  background: #e8f5e8;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* Calendar styles */
#calendar {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.fc-daygrid-event {
  background-color: #e53935 !important;
  border: none;
  color: white;
  font-weight: bold;
}

/* Status indicators */
.status-approved {
  color: #2e7d32;
  font-weight: bold;
}

.status-pending {
  color: #f57c00;
  font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }
  
  .container {
    margin: 20px auto;
    padding: 20px;
  }
  
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 12px 15px;
  }
}

/* Header logo sizing: subtle and responsive to avoid big jumps */
.site-logo {
  width: 160px; /* explicit width to ensure visible change */
  height: auto;
  object-fit: contain;
  margin-top: -20px; /* tiny bit more */
}
@media (min-width: 640px) {
  .site-logo { width: 180px; margin-top: -22px; }
}