
/* Deer Feeding Schedule Status Classes */
.peak-status {
    color: #27AE60 !important; /* Bright green for peak availability */
    font-weight: bold;
}

.active-status {
    color: #F39C12 !important; /* Orange for active availability */
    font-weight: bold;
}

.limited-status {
    color: #E74C3C !important; /* Red for limited availability */
    font-weight: bold;
}

.critical-status {
    color: #C0392B !important; /* Dark red for critical importance */
    font-weight: bold;
}

.survival-status {
    color: #8E44AD !important; /* Purple for survival mode */
    font-weight: bold;
}

/* Food Icon Styling */
.food-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid #555;
    background-color: #2e2e2e;
    flex-shrink: 0;
}

/* Food Images Container */
.food-images {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-right: 8px;
}

/* Clickable Food Icons */
.clickable-image {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.clickable-image:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in;
}

.image-modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-in;
}

.image-modal-caption {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: 10px;
    border-radius: 5px;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 15px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10000;
}

.image-modal-close:hover {
    color: #FFD700;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Authentication in Essentials Card */
#account-settings-card .auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

#account-settings-card .auth-signed-out {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0;
    width: 100%;
}

#account-settings-card .auth-info {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

#account-settings-card .google-signin-btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#account-settings-card .auth-signed-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    width: 100%;
}

#account-settings-card .user-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

#account-settings-card .user-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#account-settings-card .user-name {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
}

#account-settings-card .user-email {
    color: #ccc;
    font-size: 14px;
    word-break: break-word;
}

#account-settings-card .user-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
}

#account-settings-card .user-action-btn {
    background: none;
    border: 2px solid #555;
    color: #ccc;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
}

#account-settings-card .user-action-btn:hover {
    border-color: #777;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#account-settings-card .user-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

#account-settings-card .auth-loading {
    text-align: center;
}

#account-settings-card .auth-loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Card Minimize Functionality */
.card-minimize-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.2s ease;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.card-minimize-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.card-minimize-btn i {
    transition: transform 0.3s ease;
}

.card-minimize-btn.minimized i {
    transform: rotate(180deg);
}

.essentials-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    max-height: 500px;
    opacity: 1;
}

.card-content.minimized {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .food-icon {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    
    .food-images {
        gap: 3px;
    }
    
    .essentials-label {
        font-size: 13px;
    }
    
    .essentials-value {
        font-size: 14px;
    }
    
    .image-modal-content {
        width: 95%;
        top: 50%;
    }
    
    .image-modal-caption {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .image-modal-close {
        font-size: 28px;
        top: -35px;
    }
    
    #account-settings-card .auth-user-info {
        gap: 12px;
    }
    
    #account-settings-card .user-actions {
        gap: 8px;
    }
    
    #account-settings-card .user-photo {
        width: 40px;
        height: 40px;
    }
    
    #account-settings-card .user-name {
        font-size: 14px;
    }
    
    #account-settings-card .user-email {
        font-size: 12px;
    }
}

/* General Styles */
body {
  font-family: 'Tahoma', sans-serif;  
  background-color: #2b2b2b; /* Blackish Gray background color */
  color: #f4f4f4;
  margin: 0;
  padding: 0;
  text-align: center;
  max-width: 600px; /* Set a maximum width */
  margin-left: auto; /* Center horizontally */
  margin-right: auto; /* Center horizontally */
  border: 5px solid transparent; /* Transparent border for the gradient effect */
  padding: 1px; /* Add padding inside the border */
  box-sizing: border-box; /* Ensure padding doesn't increase the element's width */
  border-radius: 15px; /* Rounded corners */
  background-image: linear-gradient(#2b2b2b, #2b2b2b), linear-gradient(45deg, #f39c12, #e74c3c); /* Two background layers */
  background-origin: border-box; /* Set the origin for the border box */
  background-clip: content-box, border-box; /* Clip the background to the border */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Add a subtle shadow around the element */
}

.title {
  font-size: 48px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: rgba(75, 83, 32, 0.8); /* Semi-transparent background color */
  padding: 10px 20px;
  display: inline-block;
  border: 2px solid #4b5320;
  border-radius: 10px;
  margin-top: 20px;
}

.title-container {
  padding: 0px 0; /* Padding inside the container */
  margin: 0px 0; /* Vertical space above and below */
  width: 100%;
}


.btn {
  background-color: #4b5320; /* Army Green background color */
  color: white;
  padding: 15px 30px;
  font-size: 30px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s, transform 0.2s;
  margin: 20px 0;
  
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: rgba(75, 83, 32, 0.8); /* Semi-transparent background color */
  display: inline-block;
  border: 2px solid #4b5320;
  border-radius: 10px;
  margin-top: 20px;
}

.btn:hover {
  background-color: #3e4426; /* Lighter Army Green background color */
  transform: scale(1.05);
}

/* Location Manager Styles */
.location-manager {
  margin: 20px auto;
  padding: 0;
  background-color: rgba(75, 83, 32, 0.1);
  border: 2px solid #4b5320;
  border-radius: 10px;
  max-width: 580px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Location Manager Header */
.location-manager-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0 20px;
}

.location-manager-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-manager-title i {
  color: #FFD700;
}

/* Location Manager Content */
.location-manager-content {
  padding: 20px;
  transition: all 0.3s ease;
}

/* Hide location manager initially to prevent flash */
.location-manager.initializing {
  opacity: 0.6;
  pointer-events: none;
}

.location-manager.initializing .location-selector,
.location-manager.initializing .zip-input-container {
  display: none;
}

.location-manager.initializing .location-status {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: rgba(75, 83, 32, 0.15);
  border-radius: 8px;
}

.location-manager.initializing .location-status .status-info::before {
  content: "\f013";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  animation: spin 1s linear infinite;
}

.location-manager.initializing .location-edit-btn {
  display: none;
}

/* Prompt animations for user guidance */
@keyframes pulse {
  0% { 
    transform: scale(1); 
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
    background-color: #4b5320;
  }
  50% { 
    transform: scale(1.08); 
    box-shadow: 0 6px 20px rgba(255, 255, 0, 0.6), 0 0 15px rgba(255, 255, 102, 0.4); 
    background-color: #ffff66;
    border-color: #ffff33;
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
    background-color: #4b5320;
  }
}

@keyframes glow {
  0% { border-color: #4b5320; box-shadow: 0 0 5px rgba(75, 83, 32, 0.3); }
  50% { border-color: #6a7a28; box-shadow: 0 0 15px rgba(75, 83, 32, 0.6); }
  100% { border-color: #4b5320; box-shadow: 0 0 5px rgba(75, 83, 32, 0.3); }
}

/* Prompt classes for user guidance */
.zip-submit-btn.prompt-action {
  animation: pulse 2s ease-in-out infinite;
  color: #2b2b2b; /* Dark text for better contrast during yellow pulse */
  font-weight: bold;
}

.location-option.prompt-highlight {
  animation: glow 3s ease-in-out infinite;
}

.location-status.prompt-text {
  background-color: rgba(75, 83, 32, 0.25);
  border-left: 3px solid #4b5320;
  animation: glow 4s ease-in-out infinite;
}

.location-selector {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 15px;
}

.location-option {
  position: relative;
}

.location-option input[type="radio"] {
  display: none;
}

.location-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  background-color: #3e3e3e;
  border: 2px solid #555;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  min-width: 140px;
  justify-content: center;
}

.location-option label:hover {
  background-color: #4b5320;
  border-color: #4b5320;
  transform: translateY(-2px);
}

.location-option input[type="radio"]:checked + label {
  background-color: #4b5320;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(75, 83, 32, 0.5);
}

.location-option i {
  font-size: 16px;
}

/* Hunt Departure Calculator - Dual Hunt Display Styles */
.dual-hunt-display {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  background-color: rgba(75, 83, 32, 0.1);
  border-radius: 10px;
  padding: 15px;
  border: 2px solid #4b5320;
}

.hunt-section {
  flex: 1;
  background: rgba(60, 60, 60, 0.8);
  border-radius: 8px;
  padding: 15px;
  border-left: 4px solid #ddd;
  color: #f4f4f4;
}

.morning-hunt {
  border-left-color: #ffa500;
}

.evening-hunt {
  border-left-color: #4a90e2;
}

.hunt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

.hunt-title {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hunt-status {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 12px;
  text-align: center;
  font-style: italic;
}

.hunt-times {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 2px 0;
}

.time-label {
  color: #bbb;
  font-weight: normal;
}

.time-value {
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.countdown-timer {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  border-radius: 6px;
  background: rgba(75, 83, 32, 0.3);
  color: #fff;
  border: 1px solid #4b5320;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-timer.urgent {
  background: rgba(214, 48, 49, 0.8);
  color: #fff;
  border-color: #d63031;
  animation: pulse-urgent 1s infinite;
}

.countdown-timer.soon {
  background: rgba(255, 193, 7, 0.8);
  color: #000;
  border-color: #ffc107;
}

.countdown-timer.inactive {
  background: rgba(100, 100, 100, 0.3);
  color: #999;
  font-style: italic;
  border-color: #666;
}

.prep-time-info {
  text-align: center;
  font-size: 12px;
  color: #bbb;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #555;
}

.prep-time-info i {
  margin-right: 6px;
  color: #4b5320;
}

@keyframes pulse-urgent {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dual-hunt-display {
    flex-direction: column;
    gap: 15px;
  }
  
  .hunt-section {
    margin-bottom: 10px;
  }
  
  .countdown-timer {
    font-size: 14px;
    padding: 8px;
  }
}

/* Profile card styles */
.profile-card {
  background: rgba(75, 83, 32, 0.15);
  border: 2px solid #4b5320;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #f4f4f4;
  overflow: hidden;
}

.profile-card-header {
  background: rgba(75, 83, 32, 0.3);
  padding: 15px;
  border-bottom: 1px solid #4b5320;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile-name {
  margin: 0;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.profile-location {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 5px;
}

.profile-card-actions {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.profile-card-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.profile-card-btn-edit {
  background-color: #4b5320;
}

.profile-card-btn-edit:hover {
  background-color: #5d6628;
  transform: translateY(-1px);
}

.profile-card-btn-delete {
  background-color: #d63031;
}

.profile-card-btn-delete:hover {
  background-color: #e74c3c;
  transform: translateY(-1px);
}

/* Dual Hunt Configuration Form Styles */
.section-description {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
}

.dual-hunt-config {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.hunt-config-section {
  flex: 1;
  background: rgba(60, 60, 60, 0.6);
  border-radius: 8px;
  padding: 15px;
  border: 2px solid #555;
}

.hunt-config-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hunt-config-section:first-child .hunt-config-header {
  color: #ffa500;
}

.hunt-config-section:last-child .hunt-config-header {
  color: #4a90e2;
}

.hunt-config-section .form-group {
  margin-bottom: 10px;
}

.hunt-config-section label {
  display: block;
  color: #ccc;
  font-size: 13px;
  margin-bottom: 5px;
}

.hunt-config-section .time-input {
  width: 100%;
  padding: 8px;
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid #666;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}

.hunt-config-section .time-input:focus {
  border-color: #4b5320;
  outline: none;
  box-shadow: 0 0 5px rgba(75, 83, 32, 0.5);
}

.input-hint {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 4px;
  font-style: italic;
}

.custom-time-section {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #555;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 13px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
}

.custom-time-input {
  margin-top: 10px;
  padding-left: 20px;
}

.custom-time-input label {
  color: #ccc;
  font-size: 13px;
}

.custom-time-input .time-input {
  width: 200px;
  padding: 8px;
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid #666;
  border-radius: 4px;
  color: #fff;
}

.custom-time-input .time-input:focus {
  border-color: #4b5320;
  outline: none;
  box-shadow: 0 0 5px rgba(75, 83, 32, 0.5);
}

/* Slider containers for dual inputs */
.slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.slider-container .time-slider {
  flex: 1;
  margin: 0;
}

.time-input-number {
  width: 60px;
  padding: 4px 8px;
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid #666;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.time-input-number:focus {
  border-color: #4b5320;
  outline: none;
  box-shadow: 0 0 5px rgba(75, 83, 32, 0.5);
}

/* Mobile responsive for form */
@media (max-width: 768px) {
  .dual-hunt-config {
    flex-direction: column;
    gap: 15px;
  }
  
  .hunt-config-section {
    margin-bottom: 10px;
  }
}

.privacy-notice {
  margin-top: 8px;
  text-align: center;
}

.privacy-notice small {
  color: #aaa;
  font-size: 12px;
  font-style: italic;
  line-height: 1.3;
}

.zip-input-container {
  margin-bottom: 15px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.zip-input-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.zip-input-wrapper input {
  padding: 12px 15px;
  border: 2px solid #555;
  border-radius: 8px;
  background-color: #3e3e3e;
  color: #fff;
  font-size: 16px;
  width: 200px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.zip-input-wrapper input:focus {
  outline: none;
  border-color: #4b5320;
  box-shadow: 0 0 10px rgba(75, 83, 32, 0.3);
}

.zip-input-wrapper input::placeholder {
  color: #aaa;
}

.zip-submit-btn {
  padding: 12px 15px;
  background-color: #4b5320;
  border: 2px solid #4b5320;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.zip-submit-btn:hover {
  background-color: #5a6328;
  transform: scale(1.05);
}

.zip-submit-btn.loading {
  background-color: #666;
  cursor: wait;
  pointer-events: none;
}

.zip-submit-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.zip-error {
  margin-top: 10px;
  padding: 10px;
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  border-radius: 6px;
  color: #dc3545;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  justify-content: center;
}

.zip-error i {
  font-size: 16px;
}

/* City/State Input Styles */
.city-input-container {
  margin-bottom: 15px;
  animation: fadeIn 0.3s ease;
  position: relative;
}

.city-input-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.city-input-wrapper input {
  padding: 12px 40px 12px 15px;
  border: 2px solid #555;
  border-radius: 8px;
  background-color: #3e3e3e;
  color: #fff;
  font-size: 16px;
  width: 300px;
  transition: border-color 0.3s ease;
}

.city-input-wrapper input:focus {
  outline: none;
  border-color: #4b5320;
  box-shadow: 0 0 10px rgba(75, 83, 32, 0.3);
}

.city-input-wrapper input::placeholder {
  color: #aaa;
}

.city-input-wrapper input.city-selected {
  border-color: #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  background-color: rgba(255, 215, 0, 0.1);
}

.city-loading {
  position: absolute;
  right: 12px;
  color: #FFD700;
  font-size: 16px;
}

.city-results-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  overflow-y: auto;
  background-color: #2a2a2a;
  border: 2px solid #4b5320;
  border-radius: 8px;
  margin-top: 5px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.city-result-item {
  padding: 12px 15px;
  border-bottom: 1px solid #444;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.city-result-item:last-child {
  border-bottom: none;
}

.city-result-item:hover {
  background-color: #3e3e3e;
}

.city-result-item .result-name {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.city-result-item .result-details {
  font-size: 12px;
  color: #aaa;
}

.city-error {
  margin-top: 10px;
  padding: 10px;
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  border-radius: 6px;
  color: #dc3545;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  justify-content: center;
}

.city-error i {
  font-size: 16px;
}

.location-status {
  text-align: center;
  padding: 10px;
  background-color: rgba(75, 83, 32, 0.2);
  border-radius: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
}

.location-status i {
  color: #ccc;
}

/* Compact Mode Styles */
.location-manager.compact {
  padding: 15px 25px;
  margin: 8px auto 20px auto;
  max-width: 450px;
  /* Enhanced styling to make it stand out */
  background: linear-gradient(135deg, rgba(75, 83, 32, 0.25) 0%, rgba(75, 83, 32, 0.15) 100%);
  border: 2px solid #4b5320;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(75, 83, 32, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: compactPulse 4s ease-in-out infinite;
}

.location-manager.compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(75, 83, 32, 0.4);
  border-color: #5a6328;
  animation: none; /* Stop pulsing on hover */
}

/* Subtle pulsing animation for compact location box */
@keyframes compactPulse {
  0%, 100% {
    border-color: #4b5320;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(75, 83, 32, 0.3);
  }
  50% {
    border-color: #5a6328;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(75, 83, 32, 0.5);
  }
}

.location-manager.compact .location-selector,
.location-manager.compact .zip-input-container,
.location-manager.compact .privacy-notice {
  display: none !important;
}

.location-manager.compact .location-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(75, 83, 32, 0.3) 0%, rgba(75, 83, 32, 0.2) 100%);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.location-manager.compact .location-status .status-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.location-manager.compact .location-status .status-info i {
  color: #FFD700;
  font-size: 16px;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.4);
}


.location-edit-btn i {
  color: #FFD700;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}

  color: #fff;
}

.location-edit-btn:hover i {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.location-manager.compact .location-edit-btn {
  display: inline-block;
}

/* Location Edit and Refresh Icons in Essentials */
.location-edit-icon,
.location-refresh-icon {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 14px;
  margin-left: 8px;
  padding: 4px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.location-edit-icon:hover,
.location-refresh-icon:hover {
  background: rgba(255, 215, 0, 0.1);
  opacity: 1;
  transform: scale(1.1);
}


/* Responsive Design for Location Manager */
@media (max-width: 600px) {
  .location-manager {
    margin: 15px 10px;
    padding: 15px;
  }
  
  .location-selector {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .location-option label {
    min-width: auto;
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .zip-input-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .zip-input-wrapper input {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .location-manager {
    margin: 10px 5px;
    padding: 12px;
  }
  
  .location-option label {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .zip-input-wrapper input {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .zip-submit-btn {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .location-status {
    font-size: 13px;
  }
}

#weather-info {
  width: 100%;
  margin: 20px 0;
  padding: 0px 0; /* Padding inside the container */
  margin: 0px 0; /* Vertical space above and below */
}

.weather-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.weather-icon {
  width: 60px;
  height: 60px;
}

h1 a {
    text-decoration: none; /* Removes the underline from the link */
    color: inherit; /* Makes the link color the same as the surrounding text */
}

h2 {
  color: #e5e5e5;
}

/* Essentials Section */
.essentials {
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
}

.essentials p, .non-essentials p {
  margin: 5px 0;
  color: #fff; /* Ensuring text color is white */
}

.call {
  margin: 15px 0;
}

audio {
  margin: 10px 0;
  width: 100%;
}

/* Collapsible Section Styles */
details {
  margin: 10px 0;
}

.collapsible-summary {
    background-color: #4b5320; /* Army Green background color */
    color: white;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    list-style: none;
    height: 25px;
    align-items: center; /* Centers the content vertically */
  /* Flexbox to center content vertically */
  display: flex;
    justify-content: center; /* Centers content horizontally */

}

details[open] .collapsible-summary {
  background-color: #3e4426; /* Dark Army Green background color */
  
}


.collapsible-content {
  padding: 10px 1px; /* Changed to 1px to remove huge border inside collapsible sections to make it wider */
  background-color: #2b2b2b; /* Black background color */
  border-radius: 5px;
  overflow: hidden;
  
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10px;
}

#map-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
}

.satellite-map {
  width: 100%;
  height: auto;
  margin: 10px 0px 0 0px; /* Add 20px margin at the top, 0 on the bottom */
  cursor: pointer;
      text-align: center;

}



.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 10px auto 0 auto; /* Add margin at the top */
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 600px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}



/* Tooltip Styles */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #555; /* Gray background color */
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position above the text */
  left: 50%;
  margin-left: -100px; /* Center the tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip .tooltiptext img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Custom button styling */
.gm-style .custom-map-control-button {
  background-color: #fff; /* White background color */
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  cursor: pointer;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 18px;
  color: rgb(25, 25, 25);
}

.gm-style .custom-map-control-button i {
  font-size: 18px;
  color: rgb(25, 25, 25);
}

/* Notification Denied Location Access box style */
.notification {
  width: 100%; /* Make the notification the full width of its container */
  max-width: 600px; /* Ensure it doesn't exceed the body width */
  background-color: #f44336; /* Red background color */
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 18px;

  position: fixed; /* Fix it at the top of the screen */
  top: 0;
  left: 50%; /* Start from the center of the screen */
  transform: translateX(-50%); /* Shift it back by half its width to center it */
  box-sizing: border-box; /* Ensure padding doesn't increase the element's width */
  z-index: 1000; /* Ensure it stays on top of other elements */
}


.notification a {
  color: #FFD700; /* Gold color for links */
  text-decoration: none; /* Remove underline */
  font-weight: bold;
}

.notification a:hover {
  text-decoration: underline; /* Underline on hover */
}

.notification.hide {
  display: none;
}

/* Separator Style */
.separator {
  border: 0;
  height: 5px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #4b5320, rgba(0, 0, 0, 0));
  margin: 20px 0;
}

.custom-marker {
  background-size: contain;
  background-repeat: no-repeat;
}

/* Weather Cards */
.weather-card {
  background-color: #333;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.weather-card-title {
  color: #fff;
  font-size: 18px;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #4b5320;
  padding-bottom: 10px;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.weather-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: #3e3e3e;
  border-radius: 5px;
  border: 1px solid #555;
  transition: background-color 0.2s;
}

.weather-item:hover {
  background-color: #454545;
}

.weather-label {
  font-weight: bold;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.weather-value {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: right;
}

.forecast-summary {
  text-align: center;
}

.temp-range {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.high-temp {
  font-size: 28px;
  font-weight: bold;
  color: #ff6b6b;
}

.low-temp {
  font-size: 20px;
  color: #74c0fc;
}

.temp-separator {
  font-size: 24px;
  color: #888;
}

.forecast-description {
  font-size: 14px;
  color: #ddd;
  margin: 0;
  line-height: 1.4;
}

.forecast-table-container {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid #555;
  background: #3e3e3e;
}

.forecast-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #3e3e3e;
}

.forecast-table th,
.forecast-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #555;
  text-align: center;
  color: #fff;
}

.forecast-table tr:nth-child(even) {
  background: #454545;
}

.forecast-table tr:hover {
  background: #4a4a4a;
  transition: background-color 0.2s;
}

/* Forecast table improvements */
/* Daily forecast - temperature column (3rd column) */
#daily-forecast-table td:nth-child(3) {
  text-align: center;
  width: 33.33%;
}

/* 24-hour forecast - temperature column (2nd column) */
#hourly-forecast-table-new td:nth-child(2) {
  text-align: center;
  width: 25%;
}

/* 8-hour forecast - equal width columns */
#hourly-forecast-table td {
  width: 33.33%;
  text-align: center;
}

/* Pressure Dashboard Styles */
.pressure-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #3e3e3e;
  border-radius: 8px;
  border: 1px solid #555;
}

.pressure-current {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pressure-value {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.pressure-trend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}

.pressure-trend.rising {
  color: #4caf50;
}

.pressure-trend.falling {
  color: #f44336;
}

.pressure-trend.steady {
  color: #ffc107;
}

.pressure-change {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.change-label {
  font-size: 14px;
  color: #aaa;
}

.change-value {
  font-size: 20px;
  font-weight: bold;
}

.change-value.positive {
  color: #4caf50;
}

.change-value.negative {
  color: #f44336;
}

.change-value.neutral {
  color: #ffc107;
}


.pressure-hunting-impact {
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #666;
  background-color: #3e3e3e;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.pressure-hunting-impact.excellent {
  border-left-color: #4caf50;
  background-color: rgba(76, 175, 80, 0.1);
}

.pressure-hunting-impact.good {
  border-left-color: #8bc34a;
  background-color: rgba(139, 195, 74, 0.1);
}

.pressure-hunting-impact.moderate {
  border-left-color: #ffc107;
  background-color: rgba(255, 193, 7, 0.1);
}

.pressure-hunting-impact.fair {
  border-left-color: #ff9800;
  background-color: rgba(255, 152, 0, 0.1);
}

.pressure-hunting-impact.poor {
  border-left-color: #f44336;
  background-color: rgba(244, 67, 54, 0.1);
}

/* Pressure Chart Toggles */
.pressure-chart-toggles {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pressure-chart-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #3e3e3e;
  border: 2px solid #555;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.pressure-chart-toggle:hover {
  background-color: #4b5320;
  border-color: #4b5320;
  transform: translateY(-2px);
}

.pressure-chart-toggle.active {
  background-color: #4b5320;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(75, 83, 32, 0.5);
}

.pressure-chart-toggle i {
  font-size: 16px;
}

/* Pressure Chart Display */
.pressure-chart-display {
  position: relative;
  margin-bottom: 20px;
}

.pressure-chart-wrapper {
  display: none;
  height: 300px;
  padding: 15px;
  background-color: #2a2a2a;
  border-radius: 8px;
  border: 1px solid #555;
}

.pressure-chart-wrapper.active {
  display: block;
}

/* Mobile responsive improvements for weather */
@media (max-width: 480px) {
  .weather-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .weather-item {
    padding: 8px;
  }
  
  .weather-label {
    font-size: 11px;
  }
  
  .weather-value {
    font-size: 14px;
  }
  
  .high-temp {
    font-size: 24px;
  }
  
  .low-temp {
    font-size: 18px;
  }
  
  .temp-separator {
    font-size: 20px;
  }
  
  .forecast-table th,
  .forecast-table td {
    padding: 6px 4px;
    font-size: 12px;
  }
  
  .weather-card {
    padding: 12px;
    margin: 10px 0;
  }
}

/* Legacy Weather Table Daily */
.weather-table-daily {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  text-align: left;
  color: #000; /* Ensuring text color is black for visibility */
  background-color: #fff; /* Ensuring background color is white for visibility */
  overflow-x: auto; /* Add this line for horizontal scrolling */
  display: block; /* Ensure the table is treated as a block element */
}

/* Scrollbar Styles */
.weather-table-daily::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.weather-table-daily::-webkit-scrollbar-track {
  background: #2b2b2b; /* Dark background for the track */
  border-radius: 10px;
}

.weather-table-daily::-webkit-scrollbar-thumb {
  background-color: #4b5320; /* Army Green for the thumb */
  border-radius: 10px;
  border: 2px solid #2b2b2b; /* Padding around the thumb for better visibility */
}

.weather-table-daily::-webkit-scrollbar-thumb:hover {
  background-color: #3e4426; /* Lighter green when hovered */
}

.weather-table-daily th, .weather-table-daily td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  color: #FFFFFF; /* Set text color to white */
  white-space: nowrap; /* Prevent text wrapping */
}

.weather-table-daily tr:nth-of-type(even) {
  background-color: #4B5320; /* Army Green background color */
}

.weather-table-daily tr:nth-of-type(odd) {
  background-color: #5d6436; /* Lighter Army Green background color */
}

.weather-table-daily tr:last-of-type {
  border-bottom: 2px solid #fff; /* Last section of table, separator in black */
}

.weather-table-daily td.narrow {
  white-space: normal; /* Allow text to wrap */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Add ellipsis for overflowed text */
}

.narrow {
  width: 300px;
  padding: 2px 5px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Weather Table Hourly */
.weather-table-hourly {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
  color: #000; /* Ensuring text color is black for visibility */
  background-color: #fff; /* Ensuring background color is white for visibility */
  display: block; /* Ensure the table is treated as a block element */
}

.weather-table-hourly th, .weather-table-hourly td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  color: #FFFFFF; /* Set text color to white */
   white-space: nowrap; /* Prevent text wrapping */ 

}

.weather-table-hourly tr:nth-of-type(even) {
  background-color: #4B5320; /* Army Green background color */
}

.weather-table-hourly tr:nth-of-type(odd) {
  background-color: #5d6436; /* Lighter Army Green background color */
}

.weather-table-hourly tr:last-of-type {
  border-bottom: 2px solid #fff; /* Last section of table, separator in black */
}

.forecast-icon {
  width: 50px;
  height: 50px;
}

  .forecast-icon {
    width: 30px;
    height: 30px;
  }


}

/* Enhanced Spinner Styles */
.enhanced-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 30px;
  min-width: 300px;
  max-width: 90vw;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.spinner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spinner-icon {
  font-size: 48px;
  color: #4b5320;
  text-shadow: 0 0 10px rgba(75, 83, 32, 0.5);
}

.loading-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.loading-message {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  min-height: 20px;
}

.loading-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4b5320, #6b7330);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(75, 83, 32, 0.5);
}

.progress-text {
  color: #ccc;
  font-size: 12px;
  font-weight: 500;
  min-width: 35px;
  text-align: center;
}

/* Responsive loading spinner */
/* Initial page load - hide everything except title and location manager */
.page-loading #weather-info,
.page-loading #bottom-buttons,
.page-loading #location-permission-modal,
.page-loading details,
.page-loading .collapsible-content,
.page-loading .essentials-card,
.page-loading .non-essentials-card,
.page-loading .weather-card,
.page-loading .wind-dashboard-card {
    display: none !important;
}

.page-loading .location-manager {
    margin: 50px auto;
    max-width: 600px;
    text-align: center;
}

.page-loading .title-container {
    text-align: center;
    padding: 40px 20px;
}

/* Inline Location Permission Request */
.location-permission-request {
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.permission-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.permission-header h4 {
    color: #fff;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.permission-header p {
    color: #ccc;
    margin: 0;
    font-size: 14px;
}

.permission-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

.benefit-item i {
    color: #ccc;
    width: 16px;
    text-align: center;
}

.permission-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.permission-btn {
    flex: 1;
    min-width: 140px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.permission-btn.allow-btn {
    background-color: #4b5320;
    color: white;
}

.permission-btn.allow-btn:hover {
    background-color: #5b6428;
    transform: translateY(-1px);
}

.permission-btn.deny-btn {
    background-color: #666;
    color: white;
}

.permission-btn.deny-btn:hover {
    background-color: #777;
    transform: translateY(-1px);
}

.permission-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 12px;
    padding: 10px;
    background-color: #2a2a2a;
    border-radius: 4px;
    border-left: 3px solid #4b5320;
}

.permission-note i {
    color: #ccc;
}

@media (max-width: 600px) {
    .permission-buttons {
        flex-direction: column;
    }
    
    .permission-btn {
        min-width: 100%;
    }
}

/* Authentication Section Styles */
.auth-section {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #444;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.auth-signed-out {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #444;
    margin: 0 auto;
}

.auth-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    width: 100%;
}

.auth-info i {
    color: #ffffff !important;
    font-size: 24px;
    flex-shrink: 0;
}

/* Specific rule for cloud icon */
.auth-info .fa-cloud {
    color: #ffffff !important;
}

/* Even more specific - target any icon in auth-info */
.auth-signed-out .auth-info i {
    color: #ffffff !important;
}

/* Ultra-specific rule for the cloud icon in auth section */
.location-manager .auth-section .auth-signed-out .auth-info .fa-solid.fa-cloud {
    color: #ffffff !important;
}

/* Nuclear option - override everything */
i.fa-solid.fa-cloud {
    color: #ffffff !important;
}

.auth-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-title {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.auth-subtitle {
    color: #ccc;
    font-size: 13px;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.google-signin-btn:hover {
    background-color: #3367d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.google-signin-btn i {
    font-size: 16px;
}

/* Signed In State */
.auth-signed-in {
    width: 100%;
    max-width: 400px;
}

.auth-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #444;
}

.user-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4b5320;
}

.user-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.user-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    color: #ccc;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-actions {
    display: flex;
    gap: 8px;
}

.user-action-btn {
    background-color: #444;
    color: #ccc;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.user-action-btn:hover {
    background-color: #555;
    color: #fff;
    transform: translateY(-1px);
}

/* Loading State */
.auth-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-loading-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

.auth-loading i {
    font-size: 16px;
    color: #4b5320;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .auth-signed-out {
        padding: 12px;
        gap: 12px;
    }
    
    .auth-info {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .google-signin-btn {
        font-size: 13px;
        padding: 9px 16px;
    }
    
    .auth-user-info {
        padding: 12px;
        gap: 10px;
    }
    
    .user-photo {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .enhanced-spinner {
        min-width: 280px;
        padding: 20px;
    }
  
  .spinner-icon {
    font-size: 40px;
  }
  
  .loading-message {
    font-size: 14px;
  }
}

/* Legacy spinner for backward compatibility */
.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #4b5320;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
}

/* Modern Wind Dashboard Styles */
.wind-dashboard-card {
    background-color: #333;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.wind-dashboard-card-title {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4b5320;
    padding-bottom: 10px;
}

/* Wind Essentials Grid - matching essentials section */
.wind-essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.wind-essentials-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #3e3e3e;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.wind-essentials-item:hover {
    background-color: #454545;
}

.wind-essentials-label {
    font-weight: bold;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.wind-essentials-value {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}

/* Strategy Essentials Grid - matching essentials section */
.strategy-essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.strategy-essentials-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #3e3e3e;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.strategy-essentials-item:hover {
    background-color: #454545;
}

.strategy-essentials-label {
    font-weight: bold;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.strategy-essentials-value {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    max-width: 200px;
    text-align: right;
    word-wrap: break-word;
}

/* Wind Compass Styles */
.wind-compass-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.wind-compass-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.wind-compass {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, #444 0%, #333 100%);
    border: 3px solid #4b5320;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(75, 83, 32, 0.3);
}

.compass-face {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(255, 193, 7, 0.4) 0deg,      /* Yellow - 70 degrees */
        rgba(255, 193, 7, 0.4) 70deg,
        rgba(220, 53, 69, 0.5) 70deg,     /* Red - 40 degrees */
        rgba(220, 53, 69, 0.5) 110deg,
        rgba(255, 193, 7, 0.4) 110deg,    /* Yellow - 70 degrees */
        rgba(255, 193, 7, 0.4) 180deg,
        rgba(34, 197, 94, 0.4) 180deg,    /* Green - 180 degrees */
        rgba(34, 197, 94, 0.4) 360deg
    );
    transition: transform 0.5s ease;
    border: 3px solid #4b5320;
    z-index: 1;
}

.compass-directions {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 200px;
    height: 200px;
    z-index: 3;
    pointer-events: none;
}

.compass-direction {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.compass-direction.north { top: 10px; left: 50%; transform: translateX(-50%); }
.compass-direction.east { right: 15px; top: 50%; transform: translateY(-50%); }
.compass-direction.south { bottom: 10px; left: 50%; transform: translateX(-50%); }
.compass-direction.west { left: 15px; top: 50%; transform: translateY(-50%); }

.wind-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #ff4444;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.8));
    z-index: 10;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}

.hunter-position {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #4b5320;
    z-index: 5;
}



.wind-compass-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 180px;
}

.compass-reading {
    text-align: center;
    background-color: #444;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #555;
}

.compass-speed {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.compass-direction-text {
    font-size: 16px;
    color: #ccc;
}

.hunting-zones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zone-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.zone-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.zone-color.safe { background-color: #28a745; }
.zone-color.caution { background-color: #ffc107; }
.zone-color.danger { background-color: #dc3545; }


/* Wind Compass Explanation */
.wind-compass-explanation {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 165, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 165, 0, 0.2);
  color: #ddd;
}

.wind-compass-explanation p {
  margin: 0 0 10px 0;
  color: #FFD700;
  font-size: 16px;
}

.wind-compass-explanation ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.wind-compass-explanation li {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.wind-compass-explanation strong {
  color: #fff;
}

/* Wind Charts Controls */
.wind-charts-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-toggles, .unit-toggles {
    display: flex;
    gap: 5px;
}

.chart-toggle, .unit-toggle {
    padding: 8px 15px;
    border: 2px solid #555;
    background-color: #444;
    color: #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chart-toggle:hover, .unit-toggle:hover {
    background-color: #555;
    color: #fff;
}

.chart-toggle.active, .unit-toggle.active {
    color: #fff;
}

/* Combined button - blue to red gradient */
.chart-toggle[data-chart="combined"].active {
    background: linear-gradient(90deg, #3498db 0%, #ff6b47 100%);
    border-color: #3498db;
}

/* Speed button - blue */
.chart-toggle[data-chart="speed"].active {
    background-color: #3498db;
    border-color: #3498db;
}

/* Direction button - red */
.chart-toggle[data-chart="direction"].active {
    background-color: #ff6b47;
    border-color: #ff6b47;
}

/* Unit toggle buttons - red */
.unit-toggle.active {
    background-color: #ff6b47;
    border-color: #ff6b47;
}

/* Chart Containers */
.wind-charts-container {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
}

.chart-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chart-wrapper.active {
    opacity: 1;
    visibility: visible;
}

/* Wind Stability Panel */
.wind-stability-panel {
    background-color: #444;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #555;
}

.stability-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.stability-meter {
    margin-bottom: 10px;
}

.stability-bar {
    width: 100%;
    height: 20px;
    background-color: #555;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stability-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc3545 0%, #ffc107 25%, #28a745 75%, #20c997 100%);
    width: 0%;
    transition: width 1s ease;
    border-radius: 10px;
}

.stability-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.stability-label.poor { color: #dc3545; }
.stability-label.fair { color: #ffc107; }
.stability-label.good { color: #28a745; }
.stability-label.excellent { color: #20c997; }

.stability-description {
    font-size: 14px;
    color: #ccc;
    font-style: italic;
}

/* Hunting Recommendations Card */
.hunting-recommendations-card {
    /* Remove special border styling - inherits from wind-dashboard-card */
}

.hunting-strategy-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-status {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #444;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #555;
}

.strategy-icon {
    font-size: 32px;
    color: #4b5320;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(75, 83, 32, 0.2);
    border-radius: 50%;
}

.strategy-text h4 {
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 20px;
}

.strategy-text p {
    margin: 0;
    color: #ccc;
    font-size: 16px;
    line-height: 1.4;
}

.strategy-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.recommendation-item {
    background-color: #444;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background-color: #4a4a4a;
    border-color: #4b5320;
}

.recommendation-item i {
    font-size: 18px;
    color: #4b5320;
    margin-top: 2px;
}

.recommendation-item div {
    flex: 1;
}

.recommendation-item strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.recommendation-item span {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wind-overview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wind-compass {
        width: 200px;
        height: 200px;
    }
    
    .wind-compass-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .wind-charts-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .chart-toggles {
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    
    /* Fix mobile indent issue for chart toggle buttons */
    .wind-charts-controls {
        padding: 0;
        margin: 0;
    }
    
    .chart-toggle {
        margin: 0;
    }
    
    .wind-charts-container {
        height: 250px;
    }
    
    .strategy-status {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .strategy-recommendations {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .wind-dashboard-card {
        padding: 15px;
    }
    
    .wind-compass {
        width: 180px;
        height: 180px;
    }
    
    .wind-charts-container {
        height: 220px;
    }
    
    .chart-toggle, .unit-toggle {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0;
        text-indent: 0;
        box-sizing: border-box;
    }
    
    /* Ensure no inherited indentation on mobile */
    .chart-toggles, .unit-toggles {
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* Aggressive reset for combined button specifically */
    .chart-toggle[data-chart="combined"] {
        margin-left: 0 !important;
        padding-left: 6px !important;
        text-indent: 0 !important;
        text-align: center !important;
        position: relative;
        left: 0 !important;
        transform: none !important;
        box-sizing: border-box;
    }
    
    /* Reset the entire button container on mobile */
    .wind-charts-controls {
        padding: 0 !important;
        margin: 0 !important;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}}

/* Additional mobile-specific fix for wind dashboard button indent */
@media screen and (max-width: 768px) {
    .wind-charts-controls .chart-toggles {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .wind-charts-controls .chart-toggle {
        display: inline-block !important;
        margin: 0 2px !important;
        vertical-align: top !important;
        text-indent: 0 !important;
    }
    
    /* Force reset all positioning for combined button */
    .wind-charts-controls .chart-toggle[data-chart="combined"] {
        margin-left: 2px !important;
        margin-right: 2px !important;
        padding: 6px 10px !important;
        position: static !important;
        float: none !important;
        clear: none !important;
    }
}

/* Animation Classes */
@keyframes windPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.wind-arrow.strong {
    animation: windPulse 2s ease-in-out infinite;
}

@keyframes scentFlow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.scent-cone.active {
    animation: scentFlow 3s ease-in-out infinite;
}

.separator-white {
    border: 0;
    height: 1px;
    background: white;
    margin: 10px 0; /* Adjust the margin to control spacing around the line */
    width: 200px; /* Adjust the width to control the length of the line */
	margin: 10px auto; /* Centers the line horizontally */
}

.separator-white-long {
    border: 0;
    height: 2px; /* Increase the height for better visibility */
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0)); /* Add a gradient effect */
    margin: 20px 0; /* Adjust the margin to control spacing around the line */
    width: 80%; /* Use percentage to make it responsive */
    max-width: 700px; /* Set a maximum width */
    min-width: 300px; /* Set a minimum width */
    margin-left: auto; /* Center the line horizontally */
    margin-right: auto; /* Center the line horizontally */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle shadow for depth */
}

/* Corn Feeder Date Edit Button Styles */
.edit-date-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 8px;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background-color 0.2s, transform 0.1s;
    vertical-align: middle;
}

.edit-date-btn:hover {
    background-color: rgba(143, 188, 143, 0.2);
    transform: scale(1.1);
}

.edit-date-btn:active {
    transform: scale(0.95);
}

.edit-date-btn i {
    transition: color 0.2s;
}

.edit-date-btn:hover i {
    color: #a5d6a5 !important;
}

/* Date edit input styling */
.last-updated input[type="datetime-local"] {
    background: #2d3e28;
    border: 1px solid #4a5a45;
    color: #ccc;
    border-radius: 3px;
    padding: 3px 6px;
    font-family: inherit;
}

.last-updated input[type="datetime-local"]:focus {
    outline: none;
    border-color: #8fbc8f;
    box-shadow: 0 0 0 2px rgba(143, 188, 143, 0.2);
}

/* Media Query Example to further adjust on very small screens */
@media (max-width: 480px) {
    .separator-white-long {
        width: 90%; /* Adjust width for smaller screens */
        height: 1.5px; /* Slightly reduce the height */
    }
}


/* Back to Top Button (Bottom Right) */
#back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none; /* Hidden by default */
    background-color: #2b2b2b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000; /* Ensure it's on top of other elements */
    transition: background-color 0.3s ease; /* Smooth transition */
}

#back-to-top:hover {
    background-color: #444; /* Darker background on hover */
}

#back-to-top:active,
#back-to-top:focus {
    background-color: #2b2b2b; /* Reset background color after click */
    outline: none; /* Remove focus outline */
}


/* Collapse All Button (Bottom Left) */
#collapse-all {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: none; /* Hidden by default */
    background-color: #2b2b2b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000; /* Ensure it's on top of other elements */
    transition: background-color 0.3s ease; /* Smooth background transition */
}

#collapse-all:hover {
    background-color: #444; /* Darker background on hover */
}

#collapse-all:active,
#collapse-all:focus {
    background-color: #2b2b2b; /* Reset background color after click */
    outline: none; /* Remove focus outline */
}


/* Refresh Button (Bottom Center) */
#refresh-button {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%); /* Center the button horizontally */
    display: none; /* Hidden by default */
    background-color: #2b2b2b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000; /* Ensure it's on top of other elements */
}

#refresh-button:hover {
    background-color: #444; /* Darker background on hover */
}




}

#weather-button:disabled {
    background-color: #ccc; /* Gray out when disabled */
    cursor: not-allowed;
    color: #666;
}

.countdown-timer {
    font-size: 20px;
    color: #a5a98f; /* Light Army Green color */
    
    margin-top: 10px;
}

		
/* General Button Styling for Deer Calls */
.loop-button {
    background-color: #4b5320; /* Army Green background */
    color: #f4f4f4; /* Light text color */
    padding: 12px 24px; /* Padding for larger button */
    margin: 10px; /* Margin between buttons */
    border: 2px solid #3e4426; /* Dark Army Green border */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 18px; /* Slightly larger font size */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* Uppercase text for emphasis */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s; /* Smooth transition */
}

/* Start Button Specific Styling */
.loop-button.start {
    background-color: #4B5320; /* Olive Drab Green for start button */
}

/* Stop Button Specific Styling */
.loop-button.stop {
    background-color: #8b0000; /* Dark Red for stop button */
}

/* Hover Effects */
.loop-button:hover {
    transform: scale(1.05); /* Slightly increase size on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

/* Active Effects */
.loop-button:active {
    transform: scale(0.95); /* Slightly decrease size on click */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); /* Shallower shadow on click */
}

/* Input Container Styling for Deer Calls */
.input-container {
    margin-bottom: 20px;
    text-align: center; /* Center-align the input and label */
	padding-top: 10px; /* Adjust the value to whatever you need */
}



/* Deer Call Select Styling */

#deerCallAudio {
    display: none;
}

.deercall-select {
    width: 60%; /* Make the dropdown wider */
    padding: 10px;
    padding-right: 30px; /* Make space for the arrow */
    margin-top: 5px;
    border: 2px solid #4b5320;
    border-radius: 8px;
    font-size: 16px;
    background-color: #2b2b2b;
    color: #f4f4f4;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s, box-shadow 0.3s;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.deercall-select:focus {
    border-color: #3e4426;
    box-shadow: 0 0 10px rgba(62, 68, 38, 0.8);
    outline: none;
}

.deercall-select option {
    background: #2b2b2b;
    color: #fff;
    padding: 8px;
}

.deercall-select option:hover,
.deercall-select option:checked {
    background: #4b5320;
    color: #FFD700;
}

/* Customize the appearance of the dropdown arrow */
.deercall-select::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f4f4f4; /* Light color for arrow */
    pointer-events: none;
    transform: translateY(-50%);
}

/* Rut Maps - Match Essentials Card Layout */
.rut-maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.rut-map-card {
  background-color: #333; /* Match essentials card background */
  border-radius: 8px; /* Match essentials border radius */
  padding: 20px; /* Match essentials padding */
  margin-bottom: 20px; /* Match essentials margin */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Match essentials shadow */
  border: 1px solid #444; /* Match essentials border */
  overflow: hidden;
  transition: transform 0.2s; /* Simplified transition */
}

.rut-map-card:hover {
  transform: translateY(-2px);
}

.rut-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px 0; /* Match essentials title spacing */
  padding-bottom: 10px;
  border-bottom: 2px solid #4b5320; /* Match essentials title border */
}

.rut-map-title {
  color: #fff; /* Match essentials title color */
  margin: 0;
  font-size: 18px; /* Match essentials title size */
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rut-map-year {
  background: #8B0000;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.rut-map-preview {
  padding: 0 0 15px 0; /* Simplified padding */
  text-align: center;
}

.rut-map-preview img {
  width: 100%;
  max-width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
  border: 1px solid #555; /* Match essentials subtle border */
}

.rut-map-preview img:hover {
  transform: scale(1.05);
}

.rut-map-actions {
  display: flex;
  gap: 10px;
  padding: 15px 0 0 0; /* Simplified padding */
  border-top: 1px solid #555; /* Subtle separator */
  margin-top: 15px;
}

.rut-btn {
  flex: 1;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rut-btn-pdf {
  background: #8B0000;
  color: white;
  border: 2px solid #8B0000;
}

.rut-btn-pdf:hover {
  background: #A00000;
  transform: translateY(-1px);
}

.rut-btn-detail {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.rut-btn-detail:hover {
  background: #FFD700;
  color: #2b2b2b;
  transform: translateY(-1px);
}

/* Rut Information Card - Match Essentials */
.rut-info-card {
  background-color: #333; /* Match essentials card background */
  border-radius: 8px; /* Match essentials border radius */
  padding: 20px; /* Match essentials padding */
  margin-bottom: 20px; /* Match essentials margin */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Match essentials shadow */
  border: 1px solid #444; /* Match essentials border */
  text-align: center;
}

.rut-info-title {
  color: #fff; /* Match essentials title color */
  margin: 0 0 15px 0; /* Match essentials title spacing */
  font-size: 18px; /* Match essentials title size */
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 2px solid #4b5320; /* Match essentials title border */
  padding-bottom: 10px;
}

.rut-info-text {
  color: #ccc; /* Match essentials text color */
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

/* Georgia Rut Dates by County */
.rut-dates-list {
  text-align: left;
  margin-top: 15px;
}

.rut-date-section {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #2b2b2b;
  border-radius: 6px;
  border-left: 4px solid #8B0000;
  transition: all 0.3s;
}

.rut-date-section:hover {
  background-color: #343434;
  border-left-color: #A00000;
}

.rut-date-range {
  color: #FFD700;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rut-counties {
  color: #ccc;
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}
}

/* Mobile responsive for rut maps */
@media (max-width: 480px) {
  .rut-maps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .rut-map-header {
    padding: 12px 15px;
  }
  
  .rut-map-title {
    font-size: 18px;
  }
  
  .rut-map-preview {
    padding: 15px;
  }
  
  .rut-map-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .rut-btn {
    padding: 12px;
  }
  
  .rut-info-card {
    padding: 12px;
  }
}

/* Season Dates - Match Essentials Card Layout */
.season-dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.season-date-card {
  background-color: #333; /* Match essentials card background */
  border-radius: 8px; /* Match essentials border radius */
  padding: 20px; /* Match essentials padding */
  margin-bottom: 20px; /* Match essentials margin */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Match essentials shadow */
  border: 1px solid #444; /* Match essentials border */
  overflow: hidden;
  transition: transform 0.2s; /* Simplified transition */
}

.season-date-card:hover {
  transform: translateY(-2px);
}

.season-date-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px 0; /* Match essentials title spacing */
  padding-bottom: 10px;
  border-bottom: 2px solid #4b5320; /* Match essentials title border */
}

.season-date-title {
  color: #fff; /* Match essentials title color */
  margin: 0;
  font-size: 18px; /* Match essentials title size */
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.season-date-year {
  background: #228B22;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.season-date-preview {
  padding: 0 0 15px 0; /* Simplified padding */
  text-align: center;
}

.season-date-preview img {
  width: 100%;
  max-width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
  border: 1px solid #555; /* Match essentials subtle border */
}

.season-date-preview img:hover {
  transform: scale(1.05);
}

.season-date-actions {
  display: flex;
  gap: 10px;
  padding: 15px 0 0 0; /* Simplified padding */
  border-top: 1px solid #555; /* Subtle separator */
  margin-top: 15px;
}

.season-btn {
  flex: 1;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.season-btn-pdf {
  background: #228B22;
  color: white;
  border: 2px solid #228B22;
}

.season-btn-pdf:hover {
  background: #32CD32;
  transform: translateY(-1px);
}

.season-btn-download {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.season-btn-download:hover {
  background: #FFD700;
  color: #2b2b2b;
  transform: translateY(-1px);
}

/* Season Information Card - Match Essentials */
.season-info-card {
  background-color: #333; /* Match essentials card background */
  border-radius: 8px; /* Match essentials border radius */
  padding: 20px; /* Match essentials padding */
  margin-bottom: 20px; /* Match essentials margin */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Match essentials shadow */
  border: 1px solid #444; /* Match essentials border */
  text-align: center;
}

.season-info-title {
  color: #fff; /* Match essentials title color */
  margin: 0 0 15px 0; /* Match essentials title spacing */
  font-size: 18px; /* Match essentials title size */
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 2px solid #4b5320; /* Match essentials title border */
  padding-bottom: 10px;
}

.season-info-text {
  color: #ccc; /* Match essentials text color */
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}
}

/* Solunar Feeding Times Styles */
.feeding-times-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.feeding-time-section {
  background: rgba(75, 83, 32, 0.1);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(75, 83, 32, 0.3);
}

.feeding-time-section.major {
  border-left: 4px solid #FFD700;
}

.feeding-time-section.minor {
  border-left: 4px solid #FFA500;
}

.feeding-time-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #FFD700;
  font-weight: bold;
  font-size: 14px;
}

.feeding-time-section.minor .feeding-time-header {
  color: #FFA500;
}

.feeding-times-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feeding-time-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feeding-time-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.solunar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 165, 0, 0.1);
  border-radius: 6px;
  color: #ccc;
  font-size: 12px;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.solunar-note i {
  color: #FFA500;
}

/* Mobile responsive for solunar times */
@media (max-width: 600px) {
  .feeding-times-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feeding-time-section {
    padding: 12px;
  }
}

/* Mobile responsive for season dates */
@media (max-width: 480px) {
  .season-dates-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .season-date-header {
    padding: 12px 15px;
  }
  
  .season-date-title {
    font-size: 18px;
  }
  
  .season-date-preview {
    padding: 15px;
  }
  
  .season-date-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .season-btn {
    padding: 12px;
  }
  
  .season-info-card {
    padding: 12px;
  }
}

/* Deer Processors - Modern Layout */
.processor-controls {
  margin-bottom: 20px;
}

.processor-search-bar {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
}

.search-input-container {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: none;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
}

.processor-search-input {
  width: 100%;
  min-width: 0;
  padding: 12px 15px 12px 45px;
  border: 2px solid #4b5320;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4f4f4;
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}

.processor-search-input:focus {
  outline: none;
  border-color: #FFD700;
  background: rgba(75, 83, 32, 0.2);
}

.processor-search-input::placeholder {
  color: #bbb;
}

.processor-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-label {
  color: #FFD700;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.processor-filter-select {
  padding: 8px 12px;
  border: 2px solid #4b5320;
  border-radius: 6px;
  background: #2b2b2b;
  color: #fff;
  font-size: 14px;
  min-width: 150px;
  cursor: pointer;
}

.processor-filter-select:focus {
  outline: none;
  border-color: #FFD700;
  background: #2b2b2b;
}

.processor-filter-select option {
  background: #2b2b2b;
  color: #fff;
  padding: 8px 12px;
}

.processor-filter-select option:hover,
.processor-filter-select option:checked {
  background: #4b5320;
  color: #FFD700;
}

.processor-filter-select option:disabled {
  background: #1a1a1a;
  color: #666;
}

.view-toggle {
  display: flex;
  gap: 5px;
}

.view-btn {
  padding: 8px 12px;
  border: 2px solid #4b5320;
  background: transparent;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-btn:hover {
  background: rgba(75, 83, 32, 0.3);
}

.view-btn.active {
  background: #4b5320;
  border-color: #FFD700;
}

.results-info {
  padding: 10px 0;
  color: #bbb;
  font-size: 14px;
  border-bottom: 1px solid #4b5320;
  margin-bottom: 20px;
}

/* Processor Cards Grid */
.processor-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.processor-card {
  background: rgba(75, 83, 32, 0.15);
  border: 1px solid #4b5320;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.processor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.processor-card-header {
  padding: 15px 20px;
  background: rgba(75, 83, 32, 0.3);
  border-bottom: 1px solid #4b5320;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.processor-name {
  color: #FFD700;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.processor-county {
  background: #8B4513;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.processor-card-content {
  padding: 20px;
}

.processor-address {
  color: #ddd;
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.4;
}

.processor-phone {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 15px 0;
}

.processor-actions {
  display: flex;
  gap: 10px;
}

.processor-btn {
  flex: 1;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.processor-btn-call {
  background: #228B22;
  color: white;
  border: 2px solid #228B22;
}

.processor-btn-call:hover {
  background: #32CD32;
  transform: translateY(-1px);
}

.processor-btn-directions {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.processor-btn-directions:hover {
  background: #FFD700;
  color: #2b2b2b;
  transform: translateY(-1px);
}

/* Enhanced Table View */
.processor-table-container {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #4b5320;
  margin-bottom: 20px;
}

.processor-table {
  width: 100%;
  border-collapse: collapse;
  background: #2b2b2b;
}

.processor-table th,
.processor-table td {
  padding: 12px;
  border-bottom: 1px solid #4b5320;
  text-align: left;
  color: #fff;
}

.processor-table th {
  background: rgba(75, 83, 32, 0.3);
  color: #FFD700;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

.processor-table tr:nth-child(even) {
  background: rgba(75, 83, 32, 0.1);
}

.processor-table tr:hover {
  background: rgba(75, 83, 32, 0.2);
}

.processor-table-actions {
  display: flex;
  gap: 8px;
}

.processor-table-btn {
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Processor Info Card */
.processor-info-card {
  background: rgba(139, 69, 19, 0.15);
  border: 1px solid #8B4513;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
}

.processor-info-title {
  color: #FFD700;
  margin: 0 0 10px 0;
  font-size: 16px;
}

.processor-info-text {
  color: #ddd;
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
}

/* Mobile responsive for processors */
@media (max-width: 768px) {
  .processor-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .processor-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .view-toggle {
    justify-content: center;
  }
  
  .processor-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .processor-table-actions {
    flex-direction: column;
    gap: 4px;
  }
  
  .search-input-container {
    max-width: 100%;
    flex: 1;
  }
  
  .processor-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

/* No results message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 16px;
  background: rgba(75, 83, 32, 0.1);
  border: 1px solid #4b5320;
  border-radius: 8px;
  margin: 20px 0;
}

.error-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #ff6b6b;
  font-size: 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid #ff6b6b;
  border-radius: 8px;
  margin: 20px 0;
}

/* Modern Deer Harvest Section */
.harvest-dashboard {
  margin-bottom: 30px;
}

.harvest-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.harvest-stat-card {
  background: rgba(75, 83, 32, 0.15);
  border: 1px solid #4b5320;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.harvest-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 32px;
  opacity: 0.8;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #bbb;
  margin-top: 4px;
}

.section-title {
  color: #FFD700;
  font-size: 20px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Quick Add Form */
.quick-add-section {
  background: rgba(75, 83, 32, 0.1);
  border: 1px solid #4b5320;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.modern-harvest-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #FFD700;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #4b5320;
  border-radius: 8px;
  background: #2b2b2b;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFD700;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.harvest-submit-btn {
  background: #228B22;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.harvest-submit-btn:hover {
  background: #32CD32;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.location-info {
  color: #bbb;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Harvest Records Section */
.harvest-records-section {
  background: rgba(75, 83, 32, 0.05);
  border: 1px solid #4b5320;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.records-header {
  margin-bottom: 20px;
}

.harvest-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.harvest-search-container {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.harvest-search-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #4b5320;
  border-radius: 8px;
  background: #2b2b2b;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s;
}

.harvest-search-input:focus {
  outline: none;
  border-color: #FFD700;
}

.harvest-filters {
  display: flex;
  align-items: center;
  gap: 15px;
}

.harvest-filter-select {
  padding: 8px 12px;
  border: 2px solid #4b5320;
  border-radius: 6px;
  background: #2b2b2b;
  color: #fff;
  font-size: 14px;
  min-width: 120px;
  cursor: pointer;
}

.harvest-filter-select:focus {
  outline: none;
  border-color: #FFD700;
}

/* Harvest Cards */
.harvest-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.harvest-card {
  background: rgba(75, 83, 32, 0.15);
  border: 1px solid #4b5320;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.harvest-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.harvest-card-header {
  padding: 15px 20px;
  background: rgba(75, 83, 32, 0.3);
  border-bottom: 1px solid #4b5320;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.harvest-hunter-name {
  color: #FFD700;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.harvest-date {
  color: #bbb;
  font-size: 14px;
}

.harvest-card-content {
  padding: 20px;
}

.harvest-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.harvest-detail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.harvest-detail-label {
  color: #bbb;
  font-size: 14px;
}

.harvest-detail-value {
  color: #fff;
  font-weight: bold;
}

.harvest-location {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.harvest-notes {
  color: #ddd;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.harvest-actions {
  display: flex;
  gap: 10px;
}

.harvest-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border: none;
}

.harvest-btn-map {
  background: #4169E1;
  color: white;
}

.harvest-btn-map:hover {
  background: #5A7FE7;
  transform: translateY(-1px);
}

.harvest-btn-delete {
  background: #DC143C;
  color: white;
}

.harvest-btn-delete:hover {
  background: #FF1744;
  transform: translateY(-1px);
}

/* Enhanced Table View */
.harvest-table {
  width: 100%;
  border-collapse: collapse;
  background: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
}

.harvest-table th,
.harvest-table td {
  padding: 12px;
  border-bottom: 1px solid #4b5320;
  text-align: left;
  color: #fff;
}

.harvest-table th {
  background: rgba(75, 83, 32, 0.3);
  color: #FFD700;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

.harvest-table tr:nth-child(even) {
  background: rgba(75, 83, 32, 0.1);
}

.harvest-table tr:hover {
  background: rgba(75, 83, 32, 0.2);
}

/* Data Management */
.data-management-section {
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid #8B0000;
  border-radius: 12px;
  padding: 25px;
}

.data-management-grid {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.data-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.backup-btn {
  background: #228B22;
  color: white;
}

.backup-btn:hover {
  background: #32CD32;
  transform: translateY(-1px);
}

.restore-btn {
  background: #4169E1;
  color: white;
}

.restore-btn:hover {
  background: #5A7FE7;
  transform: translateY(-1px);
}

.data-info {
  color: #bbb;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .harvest-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .harvest-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .harvest-filters {
    justify-content: center;
  }
  
  .harvest-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .harvest-details {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  
  .data-management-grid {
    flex-direction: column;
  }
}
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.4); 
    padding-top: 60px;
}

.deer-login-modal-content {
    background-color: #2b2b2b; /* Match the background color of your main content */
    margin: 5% auto;
    padding: 20px;
    border: 2px solid #4b5320; /* Change the border color to match your theme */
    width: 80%; 
    max-width: 600px; /* Increase width if needed */
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden; /* Prevent internal scrolling */
    max-height: 90vh; /* Limit the maximum height to 90% of the viewport */
}

#deerLoginFrame {
    width: 100%;
    height: auto; /* Let the iframe height adjust based on content */
    min-height: 300px; /* Ensure a minimum height */
    border: none; /* Remove iframe border */
}

.deer-login-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.deer-login-close:hover,
.deer-login-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}




/* Deer Login Button Styling FOR THE POPUP LOGIN */
.deer-login-button {
    background-color: #4b5320; /* Army Green background color */
    color: #f4f4f4; /* Light text color */
    padding: 12px 24px; /* Padding for a larger button */
    margin: 10px 0; /* Margin around the button */
    border: 2px solid #3e4426; /* Dark Army Green border */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 18px; /* Slightly larger font size */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* Uppercase text for emphasis */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s; /* Smooth transitions */
}

/* Hover Effects */
.deer-login-button:hover {
    background-color: #3e4426; /* Darker Army Green on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

/* Active Effects */
.deer-login-button:active {
    transform: scale(0.95); /* Slightly decrease size on click */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); /* Shallower shadow on click */
}


/* Deer Login Trigger Button Styling REGISTER A DEER HARVEST*/
.deer-login-trigger-button {
    background-color: #8B0000; /* Army Green background color */
    color: #f4f4f4; /* Light text color */
    padding: 12px 24px; /* Padding for a larger button */
    margin: 10px 0; /* Margin around the button */
    border: 2px solid #3e4426; /* Dark Army Green border */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 18px; /* Slightly larger font size */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* Uppercase text for emphasis */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s; /* Smooth transitions */
}

/* Hover Effects */
.deer-login-trigger-button:hover {
    background-color: #8B0000; /* Darker Army Green on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

/* Active Effects */
.deer-login-trigger-button:active {
    transform: scale(0.95); /* Slightly decrease size on click */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); /* Shallower shadow on click */
}


/* Deer Log Form Styles */
.deerlog-form {
    background-color: #2b2b2b; /* Match the background color */
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #4b5320; /* Army Green border */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    max-width: 600px;
    margin: 20px auto; /* Center the form */
}

.deerlog-form h2 {
    color: #f4f4f4; /* Light text color */
    margin-bottom: 20px;
    text-align: center;
}

/* Form Labels */
.deerlog-form label {
  display: block;
  color: #f4f4f4; /* Light text color */
  font-weight: bold;
  margin-bottom: 8px;
}

/* Disabled Input in Deer Log Harvest Record Form */
.deerlog-form input[disabled] {
    background-color: #848484 !important; /* Light gray background */
    color: #fff !important; /* White text color for contrast */
    opacity: 1; /* Prevents fading */
    border: 1px solid #ccc; /* Optional: Add a border for visual clarity */
}


.deerlog-form input[type="submit"] {
    background-color: #4b5320; /* Army Green background color */
    color: #f4f4f4; /* Light text color */
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #3e4426; /* Darker Army Green border */
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.deerlog-form input[type="submit"]:hover {
    background-color: #3e4426; /* Darker on hover */
    transform: scale(1.05);
}

.deerlog-form input[type="submit"]:active {
    transform: scale(0.95);
}

/* Deer Harvest Log Table Styles */
.deerlog-table {
    width: 100%; /* Full width of the container */
    margin-top: 0px; /* Spacing above the table */
    border-collapse: collapse; /* Remove gaps between table cells */
    border: 2px solid #4b5320; /* Army Green border */
    background-color: #2b2b2b; /* Background color to match the theme */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    color: #f4f4f4; /* Light text color */
}

.deerlog-table th,
.deerlog-table td {
    padding: 12px; /* Padding inside table cells */
    border: 1px solid #4b5320; /* Army Green border */
    text-align: left; /* Align text to the left */
}

.deerlog-table th {
    background-color: #4b5320; /* Army Green background */
    font-weight: bold; /* Make header text bold */
    text-transform: uppercase; /* Uppercase text in headers */
}

.deerlog-table tr:nth-child(even) {
    background-color: #3e4426; /* Alternating row background color */
}

.deerlog-table tr:hover {
    background-color: #5d6436; /* Highlight on hover */
}

/* Scrollable container for the deerlog table */
.deerlog-table-container {
    overflow-x: auto; /* Allow horizontal scrolling */
    width: 100%; /* Full width of the parent container */
    margin-top: 20px; /* Optional: Add spacing above the container */
    border-radius: 8px; /* Optional: Add rounded corners for the container */
}

/* Notes column */
.deerlog-table td.notes-column {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

/* Expanded view of the notes */
.deerlog-table td.notes-column.expanded {
    white-space: normal;
    max-width: 100%; /* Expand to full width */
    word-wrap: break-word;
}

/* Style links inside the processor table */
.deerlog-table a {
    color: #ffffff; /* White text color */
    text-decoration: none; /* Remove underline */
    
}

.deerlog-table a:hover {
    color: #f0f0f0; /* Slightly lighter white on hover */
    text-decoration: underline; /* Optional: Add underline on hover */
}


/* Form Container for Deer Harvest */
/* Form Input Fields */
.deerlog-form input[type="text"],
.deerlog-form input[type="number"],
.deerlog-form input[type="date"],
.deerlog-form textarea {
  width: 90%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 2px solid #4b5320; /* Army Green border */
  background-color: #fff; /* Darker background */
  color: #000; /* Light text color */
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.deerlog-form select {
  width: 90%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 2px solid #4b5320; /* Army Green border */
  background-color: #2b2b2b; /* Dark background matching theme */
  color: #fff; /* White text color */
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.deerlog-form select:focus {
  outline: none;
  border-color: #FFD700;
  background-color: #2b2b2b;
}

.deerlog-form select option {
  background: #2b2b2b;
  color: #fff;
  padding: 8px;
}

.deerlog-form select option:hover,
.deerlog-form select option:checked {
  background: #4b5320;
  color: #FFD700;
}

/* Submit Button */
.deerlog-form button[type="submit"] {
  background-color: #4b5320; /* Army Green background color */
  color: #f4f4f4; /* Light text color */
  padding: 12px 24px;
  border-radius: 8px;
  border: 4px solid #3e4426; /* Darker Army Green border */
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

/* Hover Effects for Submit Button */
.deerlog-form button[type="submit"]:hover {
  background-color: #3e4426; /* Darker on hover */
  transform: scale(1.05);
}

/* Active Effect for Submit Button */
.deerlog-form button[type="submit"]:active {
  transform: scale(0.95);
}

/* Button Styles for Deer Harvest Record Form (similar to your bottom buttons) */
#refresh-form-button {
    background-color: #4b5320; /* Army Green background */
    color: #f4f4f4; /* Light text */
    padding: 12px 24px;
    border-radius: 8px;
    border: 4px solid #3e4426; /* Darker Army Green border */
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
	margin-top: 5px;
	

}

#refresh-form-button:hover {
    background-color: #3e4426; /* Darker on hover */
    transform: scale(1.05);
}

#refresh-form-button:active {
    transform: scale(0.95);
}




.deer-log-map-link {
    color: #fff; /* Gold color */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #fff; /* Underline with color */
    padding-bottom: 2px; /* Space between text and underline */
    transition: color 0.3s, border-color 0.3s; /* Smooth transition */
}

.deer-log-map-link:hover {
    color: #fff; /* Slightly darker gold on hover */
    border-color: #8B0000; /* Change underline on hover */
    text-decoration: none;
}

/* Example color */
.logout-link {
  background-color: #8B0000; /* Red background color */
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s, transform 0.2s;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  border: 2px solid #4b5320;
  display: inline-block;
  text-align: center;
  text-decoration: none; /* Removes the underline */
}

.logout-link:hover {
  background-color: #8B0000; /* Red background color */
  transform: scale(1.05);
}


.nws-toast {
    visibility: hidden;
    min-width: 250px;
    max-width: 80%; /* Adjust the width as needed */
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Center the toast both horizontally and vertically */
    font-size: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.nws-toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {opacity: 0;} 
    to {opacity: 1;}
}

@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {opacity: 1;} 
    to {opacity: 0;}
}

@keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
}


/* DEER HARVEST DELTE BUTTON */
.delete-btn {
  background-color: #8b0000; /* Dark red background */
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.delete-btn:hover {
  background-color: #a52a2a; /* Lighter red on hover */
}


/* Modal styles for delete button for Deer Harvest Record*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.7); /* Black background with transparency */
}

.modal-content {
  background-color: #2b2b2b; /* Match the page's background */
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 2px solid #4b5320; /* Army Green border */
  border-radius: 10px;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 400px;
  text-align: center; /* Center the text */
  color: #f4f4f4; /* Light text color */
}

.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content p {
  margin-bottom: 20px;
}

/* Button Styles for Confirm and Cancel Modal Deer Harvest Record */
.confirm-btn, .cancel-btn {
  background-color: #4b5320; /* Army Green background */
  color: #f4f4f4; /* Light text */
  padding: 10px 20px;
  border-radius: 5px;
  border: 2px solid #ccc; /* Light gray border */
  cursor: pointer;
  font-size: 16px;
  margin: 10px;
  transition: background-color 0.3s;
}

.confirm-btn:hover {
  background-color: #8b0000; /* Darker green on hover */
}

.cancel-btn:hover {
  background-color: #ccc; /* Dark red on hover */
    color: #000; /* Light text */

}



/* Harvest Backup and Restore Button Styles */
.harvest-backup-restore-buttons {
	background-color: #8b0000; /* Same as the Stop Loop button (for Backup) */
    color: #f4f4f4; /* Light text */
    padding: 8px 16px; /* Smaller padding to reduce size */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #3e4426; /* Darker border */
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin: 5px; /* Margin between buttons */
	margin-top: 25px; /* Add top margin to buttons */
    width: auto; /* Adjust width to fit content */
}

/* Harvest Restore Button Color */
.harvest-restore-button {
    background-color: #4b5320; /* Army Green for Restore button */
}

/* Hover effects for harvest buttons */
.harvest-backup-restore-buttons:hover {
    background-color: #3e4426; /* Darken on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.harvest-backup-restore-buttons:active {
    transform: scale(0.95); /* Slightly shrink when clicked */
}



/* Style the hidden file input for restore */
#restore-input {
    display: none; /* Keep the file input hidden */
}

/* Harvest Success Notification Styles */
.harvest-success-notification {
    background-color: #fff; /* White background */
    color: #333;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    max-width: 90%;
    font-weight: bold;
}

.harvest-success-notification.show {
    opacity: 1;
}

.harvest-success-notification.hide {
    opacity: 0;
}

/* Modern Harvest Dashboard Styles */
.harvest-dashboard {
    margin-bottom: 20px;
}

.harvest-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.harvest-stat-card {
    background-color: #3e4426;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.harvest-stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 24px;
    margin-right: 10px;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: #ccc;
}

/* Modern Harvest Form */
.harvest-form-container {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modern-harvest-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.full-width {
    width: 100%;
    flex-basis: 100%;
}

.modern-harvest-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ccc;
}

.modern-harvest-form input[type="text"],
.modern-harvest-form select,
.modern-harvest-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #444;
    color: #fff;
    font-size: 16px;
}

.modern-harvest-form textarea {
    min-height: 80px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.harvest-submit-btn {
    background-color: #4b5320;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.harvest-submit-btn:hover {
    background-color: #5b6428;
}

.location-info {
    color: #aaa;
    font-size: 14px;
}

/* Harvest Records Section */
.harvest-records-section {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.records-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 15px;
}

.section-title {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Search and Filter Controls */
.harvest-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.harvest-search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.harvest-search-input {
    padding: 8px 10px 8px 35px;
    border-radius: 20px;
    border: 1px solid #555;
    background-color: #444;
    color: #fff;
    font-size: 14px;
    min-width: 200px;
}

.harvest-filter-select {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #555;
    background-color: #444;
    color: #fff;
    font-size: 14px;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    background-color: #444;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 8px;
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn.active {
    background-color: #4b5320;
    color: white;
}

.view-btn:hover {
    background-color: #555;
    color: #fff;
}

.results-info {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
}

/* Harvest Cards View */
.harvest-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.harvest-card {
    background-color: #444;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.harvest-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #3e4426;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deer-icon {
    font-size: 24px;
    background-color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deer-icon.buck {
    color: #4A90E2; /* Blue for buck */
}

.deer-icon.doe {
    color: #FF69B4; /* Pink for doe */
}

/* Deer head icon styling */
.deer-head-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

.harvest-info h4 {
    margin: 0 0 5px 0;
    color: #fff;
}

.harvest-date {
    font-size: 14px;
    color: #ccc;
}

.card-delete-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
    padding: 5px;
}

.card-delete-btn:hover {
    color: #e74c3c;
}

.card-body {
    padding: 15px;
}

.card-stat {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.deer-type-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.deer-type-badge.buck {
    background-color: #4A90E2; /* Blue for buck */
    color: #fff;
}

.deer-type-badge.doe {
    background-color: #FF69B4; /* Pink for doe */
    color: #fff;
}

/* Style mars/venus symbols with colors */
.gender-symbol.buck {
    color: #4A90E2; /* Blue mars symbol for buck */
    font-weight: bold;
    font-size: 1.1em;
}

.gender-symbol.doe {
    color: #FF69B4; /* Pink venus symbol for doe */
    font-weight: bold;
    font-size: 1.1em;
}

/* Keep badge text white on colored backgrounds */
.deer-type-badge.buck,
.deer-type-badge.doe {
    color: #fff;
}

/* Hunt Departure Calculator Styles */
.departure-card {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #444;
}

.departure-card-title {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4b5320;
    padding-bottom: 10px;
}

/* Active Hunt Display */
.active-hunt-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #3e3e3e;
    border-radius: 8px;
    border: 1px solid #555;
}

.hunt-info {
    flex: 1;
}

.hunt-target-time {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.hunt-property-stand {
    font-size: 14px;
    color: #ccc;
}

.departure-time-display {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.departure-label {
    font-size: 14px;
    color: #ccc;
}

.departure-time {
    font-size: 24px;
    font-weight: bold;
    color: #8fbc8f;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.departure-details-btn {
    background: #555;
    border: 1px solid #666;
    color: #ccc;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.departure-details-btn:hover {
    background: #666;
    color: #fff;
}

.departure-details-btn.expanded i {
    transform: rotate(180deg);
}

/* Departure Details */
.departure-details {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #555;
}

.departure-details.expanded {
    display: block;
}

.timeline-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #444;
    border-radius: 5px;
    border-left: 3px solid #8fbc8f;
}

.timeline-item-time {
    font-size: 14px;
    color: #8fbc8f;
    font-weight: bold;
    min-width: 80px;
}

.timeline-item-activity {
    flex: 1;
    color: #ccc;
    margin: 0 15px;
}

.timeline-item-duration {
    color: #fff;
    font-size: 12px;
    background: #555;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Countdown Section */
.countdown-section {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #2d3e28, #3e4e38);
    border-radius: 10px;
    border: 2px solid #4b5320;
}

.countdown-label {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

.countdown-display {
    font-size: 32px;
    font-weight: bold;
    color: #8fbc8f;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', monospace;
}

.countdown-display.urgent {
    color: #ff6b47;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Profile Management */
.profile-actions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.profile-view-toggle {
    display: flex;
    gap: 5px;
}

.view-toggle-btn {
    padding: 8px 12px;
    border: 1px solid #555;
    background: #444;
    color: #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-toggle-btn:hover {
    background: #555;
    color: #fff;
}

.view-toggle-btn.active {
    background: #8fbc8f;
    color: #2d3e28;
    border-color: #8fbc8f;
}

/* All Profiles View */
.all-profiles-view {
    display: block;
}

.profiles-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-card {
    background-color: #3e3e3e;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.profile-card:hover {
    border-color: #8fbc8f;
    background-color: #454545;
}

.profile-card.next-hunt {
    border-color: #8fbc8f;
    background: linear-gradient(135deg, rgba(143, 188, 143, 0.1), rgba(45, 62, 40, 0.1));
    box-shadow: 0 4px 12px rgba(143, 188, 143, 0.2);
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 5px 0;
    display: block;
    width: 100%;
    text-align: left;
}

.profile-stand-name {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    display: block;
    width: 100%;
    text-align: left;
}

.profile-minimize-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #666;
    color: #FFD700;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.profile-minimize-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.profile-minimize-btn i {
    transition: transform 0.3s ease;
}

.profile-card-content {
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-location {
    font-size: 14px;
    color: #ccc;
    margin: 0 0 10px 0;
}

.profile-subtitle {
    font-size: 13px;
    color: #FFD700;
    margin: 5px 0 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.profile-subtitle i {
    font-size: 12px;
    color: #FFA500;
}

.profile-target {
    font-size: 13px;
    color: #8fbc8f;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 15px;
    padding-right: 10px;
}

.profile-card-btn {
    padding: 6px 12px;
    border: 1px solid #555;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 80px;
}

.profile-card-btn-edit {
    background: #555;
    color: #ccc;
}

.profile-card-btn-edit:hover {
    background: #666;
    color: #fff;
}

.profile-card-btn-delete {
    background: #663333;
    color: #fff;
}

.profile-card-btn-delete:hover {
    background: #774444;
}

.profile-timing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.timing-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background-color: #444;
    border-radius: 6px;
    border: 1px solid #555;
}

.timing-label {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 5px;
}

.timing-value {
    font-size: 16px;
    font-weight: bold;
    color: #8fbc8f;
}

.timing-countdown {
    font-size: 14px;
    color: #fff;
    margin-top: 3px;
    font-family: 'Courier New', monospace;
}

.timing-countdown.urgent {
    color: #ff6b47;
    animation: pulse 1s infinite;
}

.timing-countdown.passed {
    color: #888;
    text-decoration: line-through;
}

.next-hunt-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: #8fbc8f;
    color: #2d3e28;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.no-profiles-message {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

.no-profiles-message p {
    margin: 0;
    font-size: 16px;
}

/* Dropdown Selector View */
.dropdown-selector-view {
    display: none;
}

.profile-selector {
    margin-bottom: 20px;
}

.profile-selector label {
    display: block;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.profile-select {
    width: 100%;
    padding: 10px;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.profile-select:focus {
    outline: none;
    border-color: #8fbc8f;
}

.profile-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.profile-btn {
    padding: 8px 15px;
    border: 1px solid #555;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-btn-new {
    background: #4b5320;
    color: #fff;
}

.profile-btn-new:hover:not(:disabled) {
    background: #5d6538;
}

.profile-btn-edit {
    background: #555;
    color: #ccc;
}

.profile-btn-edit:hover:not(:disabled) {
    background: #666;
    color: #fff;
}

.profile-btn-delete {
    background: #663333;
    color: #fff;
}

.profile-btn-delete:hover:not(:disabled) {
    background: #774444;
}

/* Profile Configuration */
.config-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}

.config-section:last-of-type {
    border-bottom: none;
}

.config-section-title {
    color: #8fbc8f;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #4b5320;
    padding-bottom: 5px;
}

.config-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.config-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.config-input-group label {
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
}

.config-input {
    padding: 10px;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.config-input:focus {
    outline: none;
    border-color: #8fbc8f;
}

/* Target Time Options */
.target-time-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-option {
    padding: 15px;
    background-color: #3e3e3e;
    border-radius: 8px;
    border: 1px solid #555;
    transition: all 0.3s ease;
}

.time-option:has(input:checked) {
    border-color: #8fbc8f;
    background-color: rgba(143, 188, 143, 0.1);
}

.time-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    cursor: pointer;
    margin-bottom: 10px;
}

.time-option input[type="radio"] {
    margin: 0;
}

.time-option i {
    font-size: 18px;
    color: #8fbc8f;
}

.time-option-text {
    flex: 1;
}

.time-option-number {
    color: #fff;
    font-weight: bold;
}

.time-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #555;
    outline: none;
}

.time-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #8fbc8f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slider::-webkit-slider-thumb:hover {
    background: #a0d0a0;
    transform: scale(1.1);
}

.time-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #8fbc8f;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.time-slider::-moz-range-thumb:hover {
    background: #a0d0a0;
    transform: scale(1.1);
}

.custom-time-input {
    padding: 8px 12px;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
}

.custom-time-input:focus {
    outline: none;
    border-color: #8fbc8f;
}

/* Timing Variables */
.timing-variable {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #3e3e3e;
    border-radius: 8px;
    border: 1px solid #555;
    transition: all 0.3s ease;
}

.timing-variable:has(input:checked) {
    border-color: #8fbc8f;
    background-color: rgba(143, 188, 143, 0.05);
}

.variable-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.variable-header input[type="checkbox"] {
    margin: 0;
}

.variable-header label {
    flex: 1;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
}

.variable-time {
    color: #8fbc8f;
    font-weight: bold;
    font-size: 14px;
    min-width: 50px;
    text-align: right;
}

/* Order Controls */
.order-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.order-input {
    width: 45px;
    padding: 6px 8px;
    background-color: #2a2a2a;
    border: 2px solid #4b5320;
    border-radius: 5px;
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.order-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.order-arrows {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-arrow {
    background: rgba(75, 83, 32, 0.3);
    border: 1px solid #4b5320;
    color: #ccc;
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 16px;
}

.order-arrow:hover {
    background: rgba(75, 83, 32, 0.6);
    color: #FFD700;
    border-color: #FFD700;
    transform: scale(1.05);
}

.order-arrow:active {
    transform: scale(0.95);
}

.order-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.order-arrow:disabled:hover {
    background: rgba(75, 83, 32, 0.3);
    color: #ccc;
    border-color: #4b5320;
    transform: none;
}

/* Custom Variables */
.custom-variable {
    /* Inherits timing-variable styles */
}

.custom-variable .custom-var-name {
    flex: 1;
    padding: 8px;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    min-width: 150px;
}

.custom-variable .custom-var-name:focus {
    outline: none;
    border-color: #8fbc8f;
}

.remove-variable-btn {
    background: #663333;
    border: 1px solid #774444;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.remove-variable-btn:hover {
    background: #774444;
}

.add-variable-btn {
    background: #4b5320;
    border: 1px solid #5d6538;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.add-variable-btn:hover {
    background: #5d6538;
}

/* Config Actions */
.config-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.config-btn {
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid;
}

.config-btn-save {
    background: #4b5320;
    border-color: #5d6538;
    color: #fff;
}

.config-btn-save:hover {
    background: #5d6538;
    transform: translateY(-2px);
}

.config-btn-cancel {
    background: #555;
    border-color: #666;
    color: #ccc;
}

.config-btn-cancel:hover {
    background: #666;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design for Hunt Departure Calculator */
@media (max-width: 768px) {
    .active-hunt-display {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .departure-time-display {
        text-align: center;
        align-items: center;
    }
    
    .config-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .config-actions {
        flex-direction: column;
    }
    
    .countdown-display {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .departure-card {
        padding: 15px;
    }
    
    .departure-card-title {
        font-size: 16px;
    }
    
    .departure-time {
        font-size: 20px;
    }
    
    .countdown-display {
        font-size: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .timeline-item-time {
        min-width: auto;
    }
}

/* Google Deer Processors Styles */
.google-processor-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-radius-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-radius-control label {
    color: #ccc;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radius-select {
    padding: 8px 12px;
    border: 2px solid #555;
    border-radius: 5px;
    background: #2b2b2b;
    color: #fff;
    font-size: 14px;
}

.radius-select:focus {
    outline: none;
    border-color: #777;
}

.search-btn {
    background: #666;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background: #777;
}

.search-btn:disabled {
    background: #666;
    cursor: not-allowed;
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    z-index: 1000;
}

.results-count {
    color: #ccc;
    margin-bottom: 15px;
    font-style: italic;
}

.processor-results-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.processor-result-item {
    background: #3e3e3e;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.processor-result-item:hover {
    background: #454545;
}

.processor-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.processor-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.processor-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFD700;
    font-weight: bold;
}

.processor-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.processor-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.processor-detail i {
    color: #777;
    width: 16px;
}

.processor-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.hours-placeholder {
    color: #888;
}

.hours-text.open {
    color: #4CAF50; /* Green for open */
    font-weight: bold;
}

.hours-text.closed {
    color: #f44336; /* Red for closed */
    font-weight: bold;
}

.hours-text {
    color: #ccc; /* Default gray for unknown status */
}

.processor-action-btn {
    background: #666;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.processor-action-btn:hover {
    background: #777;
    color: #fff;
    text-decoration: none;
}

.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 15px;
    color: #ff6b6b;
    text-align: center;
    margin: 15px 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .google-processor-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-radius-control {
        width: 100%;
    }
    
    .processor-details {
        grid-template-columns: 1fr;
    }
    
    .processor-actions {
        flex-direction: column;
    }
}

.card-notes {
    margin-top: 15px;
    border-top: 1px solid #555;
    padding-top: 15px;
}

.card-notes p {
    margin: 5px 0 0;
    color: #ccc;
    font-size: 14px;
}

.location-link {
    color: #3498db;
    text-decoration: none;
}

.location-link:hover {
    text-decoration: underline;
}

/* Harvest Table View */
.harvest-table-container {
    overflow-x: auto;
    margin-bottom: 15px;
}

.harvest-table {
    width: 100%;
    border-collapse: collapse;
}

.harvest-table th {
    background-color: #3e4426;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
}

.harvest-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #555;
}

.harvest-table tbody tr {
    background-color: #444;
    transition: background-color 0.2s;
}

.harvest-table tbody tr:hover {
    background-color: #505050;
}

.harvest-table .notes-column {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.harvest-table .notes-column.expanded {
    white-space: normal;
    overflow: visible;
}

/* Animation for delete */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* No Records Message */
.no-records-message {
    background-color: #444;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    grid-column: 1 / -1;
}

.no-records-content i {
    font-size: 48px;
    color: #aaa;
    margin-bottom: 15px;
}

.no-records-content h4 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 20px;
}

.no-records-content p {
    color: #ccc;
    margin: 0;
}

/* Data Management Section */
.data-management-section {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-management-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.data-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.backup-btn {
    background-color: #8B0000;
    color: white;
}

.restore-btn {
    background-color: #4b5320;
    color: white;
}

.data-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}


/* Reset Button */
.reset-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    height: fit-content;
    box-sizing: border-box;
}

.reset-btn:hover {
    background-color: #5a6268;
    transform: scale(1.05);
}

.reset-btn:active {
    transform: scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .harvest-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .records-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .harvest-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .harvest-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group {
        min-width: 100%;
    }
    
  .processor-search-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .search-input-container {
    min-width: 250px;
    flex: 1 1 auto;
  }
  
  .reset-btn {
    flex-shrink: 0;
  }
}

/* Modern Deer Calls Section */
.deer-calls-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.call-selection-container,
.loop-settings-container,
.control-panel-container,
.status-container {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-selection-container .section-title,
.loop-settings-container .section-title,
.control-panel-container .section-title,
.status-container .section-title {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #444;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.modern-select:focus {
    outline: none;
    border-color: #4b5320;
}

.call-description {
    margin-top: 15px;
    padding: 15px;
    background-color: #444;
    border-radius: 5px;
    border-left: 4px solid #4b5320;
    color: #ccc;
    line-height: 1.6;
    min-height: 20px;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.control-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.start-btn {
    background-color: #4b5320;
    color: white;
}

.start-btn:hover {
    background-color: #5b6428;
    transform: scale(1.05);
}

.stop-btn {
    background-color: #8b0000;
    color: white;
}

.stop-btn:hover {
    background-color: #a52a2a;
    transform: scale(1.05);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.status-item {
    background-color: #444;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #555;
}

.status-label {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.status-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* Responsive design for deer calls */
@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .control-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .control-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Modern Game Forecast Section */
.game-forecast-card {
    background-color: #333;
    border-radius: 8px;
    padding: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.game-forecast-card-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #f4f4f4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 20px 0 20px; /* Add padding for title only */
}

.modern-fishing-carousel {
    position: relative;
    background-color: #444;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.fishing-carousel-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    width: 100%;
}

.fishing-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}

.fishing-forecast-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.fishing-forecast-image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100%;
    object-fit: fill;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block;
}

.fishing-forecast-image:hover {
    opacity: 0.9;
}

.fishing-carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 15px 10px;
    text-align: center;
}

.forecast-day-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.day-label {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.date-label {
    font-size: 14px;
    color: #ccc;
    opacity: 0.9;
}

.fishing-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.fishing-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.fishing-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.fishing-nav-btn.prev {
    left: 10px;
}

.fishing-nav-btn.next {
    right: 10px;
}

/* Day Indicators */
.fishing-day-indicators {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    padding: 10px 20px 20px 20px; /* Reduced top padding for closer spacing */
}

.day-indicator {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #ccc;
    transition: all 0.3s ease;
    text-align: center;
}

.day-indicator:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.day-indicator.active {
    background-color: #4b5320;
    border-color: #4b5320;
    color: #fff;
    box-shadow: 0 2px 4px rgba(75, 83, 32, 0.3);
}

/* Loading and Error States */
.fishing-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ccc;
    font-size: 16px;
}

.fishing-loading i {
    margin-right: 8px;
    animation: spin 1s linear infinite;
}

.fishing-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ff6b6b;
    font-size: 16px;
    text-align: center;
}

.fishing-error i {
    font-size: 24px;
    margin-bottom: 8px;
}

.fishing-error p {
    margin: 0;
    font-size: 14px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .fishing-carousel-container {
        height: 280px;
    }
    
    .fishing-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .fishing-day-indicators {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        padding: 5px 20px 15px 20px; /* Reduced top padding for mobile */
    }
    
    .day-indicator {
        padding: 6px 3px;
        font-size: 11px;
    }
    
    .game-forecast-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .fishing-carousel-container {
        height: 220px;
    }
    
    .modern-fishing-carousel {
        margin-bottom: 10px;
    }
    
    .fishing-day-indicators {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        padding: 3px 15px 15px 15px; /* Reduced top padding for smaller screens */
    }
    
    .day-indicator {
        padding: 5px 2px;
        font-size: 10px;
    }
}

/* Modern Essentials Section */
.essentials-card {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #444;
}

/* Moon Phase Cards - Match Essentials Styling */
.moon-phase-card {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #444;
}

.moon-card-title {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4b5320;
    padding-bottom: 10px;
}

/* Moon Stats - Match essentials item styling */
.moon-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.moon-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #3e3e3e;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.moon-stat:hover {
    background-color: #454545;
}

.moon-stat-label {
    font-weight: bold;
    color: #ccc;
    font-size: 14px;
}

.moon-stat-value {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}

/* Activity Insights - Match essentials item styling */
.activity-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.insight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #3e3e3e;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.2s;
    gap: 10px;
}

.insight-item:hover {
    background-color: #454545;
}

.insight-item i {
    color: #ccc; /* Match essentials icon color */
    font-size: 16px;
    flex-shrink: 0;
}

.insight-item div {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-item strong {
    color: #ccc;
    font-weight: bold;
    font-size: 14px;
}

.insight-item span {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: right;
}

.essentials-card-title {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4b5320;
    padding-bottom: 10px;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.essentials-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #3e3e3e;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.essentials-item:hover {
    background-color: #454545;
}

.essentials-label {
    font-weight: bold;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.essentials-value {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}

/* Special styling for sunrise/sunset icons */
.sunrise-icon {
    color: #FFA500 !important; /* Orange for sunrise */
    background: radial-gradient(circle, rgba(255,165,0,0.2) 0%, transparent 70%);
    border-radius: 50%;
    padding: 2px;
}

.sunset-icon {
    color: #FF6347 !important; /* Red-orange for sunset */
    background: radial-gradient(circle, rgba(255,99,71,0.2) 0%, transparent 70%);
    border-radius: 50%;
    padding: 2px;
}

/* Modern Non-Essentials Section */
.non-essentials-card {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #444;
}

.non-essentials-card-title {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4b5320;
    padding-bottom: 10px;
}

.non-essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.non-essentials-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #3e3e3e;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.non-essentials-item:hover {
    background-color: #454545;
}

.non-essentials-label {
    font-weight: bold;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.non-essentials-value {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}

/* Hunt Times Special Styling */
.hunt-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hunt-time-item {
    background-color: #3e3e3e;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #555;
    transition: all 0.3s;
    text-align: center;
}

.hunt-time-item:hover {
    background-color: #454545;
    transform: translateY(-5px);
}

.hunt-time-item.morning {
    border-left: 4px solid #FFA500;
}

.hunt-time-item.evening {
    border-left: 4px solid #FF6347;
}

.hunt-time-header {
    margin-bottom: 15px;
}

.hunt-time-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.hunt-time-subtitle {
    color: #aaa;
    font-size: 14px;
    display: block;
}

.hunt-time-value {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.countdown-display {
    font-size: 18px;
    color: #fff;
    background-color: #444;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #555;
}

/* Responsive design for non-essentials */
@media (max-width: 768px) {
    .non-essentials-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hunt-times-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hunt-time-item {
        padding: 15px;
    }
    
    .non-essentials-item {
        padding: 10px 12px;
    }
    
    .non-essentials-card-title {
        font-size: 16px;
    }
    
    .hunt-time-value {
        font-size: 20px;
    }
    
    .countdown-display {
        font-size: 16px;
    }
}

/* Modern Game Forecast Section */
.game-forecast-card {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #444;
}

.game-forecast-card-title {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4b5320;
    padding-bottom: 10px;
}

/* Activity Rating Styles */
.activity-rating-container {
    text-align: center;
}

.activity-rating {
    margin-bottom: 20px;
}

.rating-stars {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.rating-text {
    font-size: 24px;
    font-weight: bold;
    color: #4b5320;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 16px;
    color: #ccc;
}

.activity-description {
    background-color: #444;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #4b5320;
    color: #ccc;
    line-height: 1.6;
    font-style: italic;
}

/* Hunting Conditions Grid */
.hunting-conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.condition-item {
    background-color: #3e3e3e;
    border-radius: 5px;
    padding: 15px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.condition-item:hover {
    background-color: #454545;
}

.condition-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.condition-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.condition-value span:first-child {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.condition-rating {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.condition-rating.excellent {
    background-color: #28a745;
    color: white;
}

.condition-rating.good {
    background-color: #ffc107;
    color: black;
}

.condition-rating.fair {
    background-color: #fd7e14;
    color: white;
}

.condition-rating.poor {
    background-color: #dc3545;
    color: white;
}

/* Solunar Times */
.solunar-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solunar-period {
    background-color: #3e3e3e;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #555;
    transition: all 0.3s;
}

.solunar-period:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.solunar-period.major {
    border-left: 4px solid #FFD700;
}

.solunar-period.minor {
    border-left: 4px solid #FFA500;
}

.period-header {
    margin-bottom: 15px;
}

.period-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.period-quality {
    color: #aaa;
    font-size: 14px;
    display: block;
}

.period-time {
    font-size: 20px;
    font-weight: bold;
    color: #4b5320;
}

/* Hunt Recommendation */
.recommendation-card {
    border: 2px solid #4b5320;
}

.recommendation-content {
    text-align: center;
}

.hunt-now-indicator {
    background-color: #444;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #555;
}

.indicator-status {
    font-size: 24px;
    margin-bottom: 10px;
}

.indicator-status.hunt-now {
    color: #28a745;
    font-weight: bold;
}

.indicator-status.hunt-soon {
    color: #ffc107;
    font-weight: bold;
}

.indicator-status.hunt-later {
    color: #6c757d;
}

.indicator-time {
    color: #ccc;
    font-size: 16px;
}

.hunt-tips {
    background-color: #3e3e3e;
    border-radius: 5px;
    padding: 15px;
    border-left: 4px solid #4b5320;
    text-align: left;
}

.hunt-tips p {
    color: #ccc;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.hunt-tips p:last-child {
    margin-bottom: 0;
}

/* Responsive design for game forecast */
@media (max-width: 768px) {
    .hunting-conditions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .solunar-times {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .condition-item {
        padding: 12px;
    }
    
    .solunar-period {
        padding: 15px;
    }
    
    .rating-stars {
        font-size: 28px;
    }
    
    .rating-text {
        font-size: 20px;
    }
    
    .period-time {
        font-size: 18px;
    }
}

/* Responsive design for essentials */
@media (max-width: 768px) {
    .essentials-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .essentials-item {
        padding: 10px 12px;
    }
    
    .essentials-card-title {
        font-size: 16px;
    }
}
    color: #2b2b2b; /* Dark text for contrast */
    padding: 12px 20px;
    border-radius: 8px;
    border: 3px solid #3e4426; /* Thicker border */
    font-weight: bold;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center it horizontally and vertically */
    z-index: 1000;
    display: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 275px; /* Set a fixed width like corn notification */
}

.harvest-success-notification.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.harvest-success-notification.hide {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95); /* Slight scale effect on hide */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.magicball__outer {
    width: 300px;
    height: 300px;
    background:#111;
    border-radius:50%;
    display:flex;
    justify-content: center;
    align-items:center;
	margin: 0 auto; /* Center it */
    box-shadow: 10px 10px 30px  rgb(13, 15, 12), -10px -10px 30px #4a4a4a;
    position: relative;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent; /* Removes the blue highlight on mobile */
}

.magicball__inner {
    width:150px;
    height:150px;
    background:#FFF;
    border-radius:50%;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index:999;
}

.magicball__response {
    text-align:center;
    font-size:8rem;
    color:#222;
    line-height:1.2rem;
}

.magicball__spotlight {
    position:absolute;
    width:250px;
    height:250px;
    top: 5px;
    border-radius:50%;
    background: #333;
    opacity:0.2;
}

.magicball__bg__shadow {
    position:absolute;
    width:175px;
    height:175px;
    top:0px;
    border-radius:50%;
    background:#666;
    opacity:0.2;
}

.magicball__upper__shadow {
    position:absolute;
    width:75px;
    height: 50px;
    top:5px;
    background:#AAA;
    opacity:0.8;
    border-radius:50%;
}

.magicball__lower__shadow {
    position:absolute;
    width:175px;
    height: 175px;
    bottom:5px;
    background:#191919;
    opacity:0.8;
    border-radius:50%;
}

/* Shake animation */
.animate{
    animation-name: shake-it;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes shake-it {
    0% { transform: translate(0, 0) rotate(0deg) scale(1.1,1.1);  }
    10% { transform: translate(10px, 10px) rotate(30deg) scale(1.3,1.3);}
    20% { transform: translate(0, 0) rotate(0deg) scale(1.1,1.1); }
    30% { transform: translate(-10px, 10px) rotate(-30deg) scale(1.5,1.5);}
    40% { transform: translate(0, 0) rotate(0deg) scale(1.2,1.2); }
    50% { transform: translate(-10px, 10px) rotate(45deg) scale(1.6,1.6); }
    60% { transform: translate(0, 0) rotate(-15deg) scale(1.3,1.3); }
    70% { transform: translate(10px, 10px) rotate(180deg) scale(1.2,1.2); }
    80% { transform: translate(0, 0) rotate(0deg) scale(1.1,1.1); ; }
    90% { transform: translate(-10px, 10px) rotate(360deg) scale(1,1); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.answer {
  text-align: center;
  color: white; /* Set the text color to white to ensure visibility */
  font-size: 24px;
}

.result-container {
  margin-top: 5px;
  text-align: center;
}

.result-container p {
  font-size: 18px;
  color: white;
}


.body-gospel {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #2c2c2c; /* Darker background */
  color: #e0e0e0; /* Lighter text */
  margin: 0;
  padding: 0;
  width: 100%; /* Ensure the body can take full width */
  
  max-width: 100%;
}

.container-gospel {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3b3b3b; /* Slightly lighter container background */
  border: 1px solid #444; /* Subtle border */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.gospel-main-title {
  font-size: 24px;
  color: #fff; /* Yellow title color for contrast */
  text-align: center;
  margin-bottom: 20px;
}

.gospel-subtitle {
  font-size: 20px;
  color: #fff; /* Lighter yellow for subtitles */
  margin-top: 30px;
  border-bottom: 2px solid #666;
  padding-bottom: 5px;
}

.gospel-subtitle-no-border {
  font-size: 17px;
  color: #fff; /* Lighter yellow for subtitles */
  margin-top: 30px;
  padding-bottom: 5px;
}

.gospel-subtitle2 {
  font-size: 15px;
  color: #fff; /* Lighter yellow for subtitles */
  margin-top: 30px;
  border-bottom: 2px solid #666;
  padding-bottom: 5px;
}

.boyd-p {
  margin: 10px 0;
  font-size: 16px;
  color: #e0e0e0;
  text-align: left;
  padding-left: 20px;
}

.unique-u {
  text-decoration: underline;
  font-weight: bold;
  color: #ffffff; /* White text for underlined content */
}

.gospel-ul {
  list-style-type: none;
  padding-left: 20px;
  margin-top: 15px;
  color: #e0e0e0;
}

.gospel-ul li {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
}

.gospel-facts-list {
  list-style-type: circle;
  padding-left: 20px;
  text-align: left;
}

.gospel-facts-list li {
  margin-bottom: 10px;
  color: #e0e0e0;
  
}

.gospel-quote {
  font-style: italic;
  background-color: #444444; /* Darker quote background */
  padding: 10px;
  border-left: 3px solid #fff;
  margin: 10px 0;
  color: #e0e0e0;
}

.gospel-video-link a {
  color: #fff; /* This will set the link color to white */
  
}

.gospel-video-link a:hover {
  color: #ffcc00; /* Optional: Change link color on hover */
}

.gospel-video-link a:visited {
  color: #fff; /* Keeps the color white even after visiting */
}

.styled-email-link {
  color: #fff; /* Custom link color */
  text-decoration: none; /* Removes default underline */
  
  padding: 0px 0px; /* Adds some padding */
  
  border-radius: 5px; /* Rounds the corners */
  background-color: #565656; /* Dark background for contrast */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.styled-email-link:hover {
  background-color: #fff; /* Changes background on hover */
  color: #565656; /* Changes text color on hover */
  padding: 3px 3px; /* Adds some padding */
}

.email-list {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
  font-size: 16px; /* Adjust font size */
}

.email-list li {
  margin-bottom: 20px; /* Add space between items */
  color: #e0e0e0; /* Text color */
  font-family: Arial, sans-serif; /* Font family */
}

.email-list span a {
  color: #fff; /* Link color */
  text-decoration: none; /* Remove underline */
  font-weight: bold; /* Bold link */
  border: 2px solid #fff; /* Border around link */
  padding: 5px 10px; /* Add padding to links */
  border-radius: 5px; /* Rounded corners */
  background-color: #444444; /* Dark background */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

.email-list span a:hover {
  background-color: #fff; /* Invert colors on hover */
  color: #2c2c2c; /* Change text color on hover */
}

/* For Zip Code 30303 */
.default-toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #c9cbbc; /* Army Green */
    color: #000; /* Black text */
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    top: 20%; /* Move toast to the center vertically */
    left: 50%; /* Move toast to the center horizontally */
    transform: translate(-50%, -50%); /* Perfectly center the toast */
    z-index: 1000;
    font-size: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.default-toast.show {
    visibility: visible;
    
}


@keyframes default-fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

@keyframes default-fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}


/* Moon dashboard - match essentials section spacing */
.moon-dashboard {
    display: block; /* Remove grid to eliminate large gaps */
}

/* Current Moon Phase Card */
.current-moon-card {
    /* Remove grid-column span */
}

/* Container for side-by-side moon phase cards */
.moon-phase-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.moon-phase-row .moon-phase-card {
    flex: 1; /* Equal width (50% each) for both cards */
    margin-bottom: 0; /* Remove individual bottom margins since row handles it */
}

/* Calendar card takes full width on its own row */
.calendar-card {
    /* Remove grid-column span */
}

.current-moon-display {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    width: 100%;
}

.moon-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.moon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #000000; /* Simple black background */
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid #444;
}

/* Remove moon-shadow styles as we're not using it anymore */
.moon-shadow {
    display: none; /* Hide the shadow element */
}

.moon-icon-large {
    font-size: 64px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.moon-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.moon-phase-name {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
    width: 100%;
}

/* Removed duplicate moon-stats definitions - using essentials-style versions instead */

/* Hunting Activity Card */
.hunting-activity-content {
    text-align: center;
}

.activity-rating {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #3e3e3e;
    border-radius: 10px;
    border: 1px solid #555;
}

.activity-stars {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.activity-level {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
}

/* Removed duplicate activity-insights definitions - using essentials-style versions instead */

.moon-phase-note {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(75, 83, 32, 0.1);
    border-radius: 8px;
    border: 1px solid #4b5320;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.moon-phase-note i {
    color: #FFD700;
    margin-top: 2px;
}

/* Phase Timeline */
.phase-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #3e3e3e;
    border-radius: 8px;
    border: 1px solid #555;
    transition: all 0.3s;
    position: relative;
}

.timeline-item:hover {
    background-color: #454545;
    transform: translateX(10px);
}

.timeline-item.active {
    border-color: #4b5320;
    background-color: rgba(75, 83, 32, 0.1);
}

.timeline-moon-icon {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
}

.timeline-details {
    flex: 1;
}

.timeline-phase-name {
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.timeline-date {
    color: #aaa;
    font-size: 14px;
}

.timeline-activity {
    color: #FFD700;
    font-size: 12px;
    font-weight: bold;
}

/* Lunar Calendar */
.lunar-calendar {
    max-width: 100%;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.calendar-nav {
    background: #fff; /* White background */
    border: none;
    color: #333; /* Dark text for contrast */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #555; /* Add subtle border */
}

.calendar-nav:hover {
    background: #f0f0f0; /* Light gray on hover */
    transform: scale(1.1);
}

.calendar-month {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 20px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #3e3e3e;
    border: 1px solid #555;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.calendar-day:hover {
    background-color: #4b5320;
    transform: scale(1.05);
}

.calendar-day.today {
    background-color: #4b5320;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(75, 83, 32, 0.5);
}

.calendar-day.other-month {
    opacity: 0.3;
}

.calendar-day.moon-event {
    border-color: #FFD700;
}

.calendar-day .day-number {
    font-weight: bold;
}

.calendar-day .moon-icon {
    font-size: 12px;
    margin-top: 2px;
}

.calendar-day .activity-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background-color: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.legend-icon {
    font-size: 16px;
}

/* Special styling for Peak Activity legend item to match calendar highlights */
.legend-item.peak-activity {
    border: 2px solid #FFD700; /* Same yellow border as calendar moon-event */
    border-radius: 4px;
    padding: 6px 10px;
    background-color: rgba(255, 215, 0, 0.1); /* Subtle yellow background */
}

/* Deer Calls Section - Match Essentials Card Layout */
.call-selection-container,
.loop-settings-container,
.control-panel-container,
.status-container {
    background-color: #333; /* Match essentials card background */
    border-radius: 8px; /* Match essentials border radius */
    padding: 20px; /* Match essentials padding */
    margin-bottom: 20px; /* Match essentials margin */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Match essentials shadow */
    border: 1px solid #444; /* Match essentials border */
}

/* Deer Calls Section Titles - Match Essentials */
.call-selection-container .section-title,
.loop-settings-container .section-title,
.control-panel-container .section-title,
.status-container .section-title {
    margin: 0 0 15px 0; /* Match essentials title spacing */
    color: #fff; /* Match essentials title color */
    font-size: 18px; /* Match essentials title size */
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #4b5320; /* Match essentials title border */
    padding-bottom: 10px;
    font-weight: bold;
}

/* Settings Grid - Match Essentials Grid Layout */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

/* Status Grid - Match Essentials Item Layout */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #3e3e3e; /* Match essentials item background */
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.2s;
}

.status-item:hover {
    background-color: #454545; /* Match essentials hover */
}

.status-label {
    font-weight: bold;
    color: #ccc; /* Match essentials label color */
    font-size: 14px;
}

.status-value {
    color: #fff; /* Match essentials value color */
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}

/* Control Buttons */
.control-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.control-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.start-btn {
    background-color: #4b5320;
    color: #fff;
    border: 2px solid #4b5320;
}

.start-btn:hover:not(.disabled) {
    background-color: #5a6328;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stop-btn {
    background-color: #8B0000;
    color: #fff;
    border: 2px solid #8B0000;
}

.stop-btn:hover:not(.disabled) {
    background-color: #A00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Disabled button states */
.control-btn.disabled,
.control-btn:disabled {
    background-color: #555 !important;
    color: #999 !important;
    border-color: #555 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.control-btn.disabled:hover,
.control-btn:disabled:hover {
    background-color: #555 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 900px) {
    .moon-dashboard {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 4px;
    }
    
    .current-moon-card {
        grid-column: span 1;
    }
    
    .hunting-activity-card,
    .timeline-card,
    .calendar-card {
        grid-column: span 1;
    }
    
    .moon-phase-card {
        margin: 4px;
        padding: 20px;
        min-height: auto;
    }
    
    .current-moon-display {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .moon-stats {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        gap: 1px;
    }
    
    .calendar-day {
        font-size: 12px;
    }
    
    .calendar-legend {
        gap: 15px;
    }
    
    .legend-item {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    /* Stack moon phase cards vertically on mobile */
    .moon-phase-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    .moon-phase-row .moon-phase-card {
        flex: none; /* Remove flex: 1 so cards take natural width */
        width: 100%; /* Ensure full width on mobile */
        max-width: 100%;
        box-sizing: border-box; /* Include padding and border in width calculation */
        margin-bottom: 15px;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Ensure moon dashboard container doesn't overflow */
    .moon-dashboard {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* General moon phase card mobile fixes */
    .moon-phase-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .moon-phase-card {
        padding: 16px;
    }
    
    .moon-card-title {
        font-size: 16px;
    }
    
    .moon-phase-name {
        font-size: 24px;
    }
    
    .moon-visual {
        min-width: 80px;
    }
    
    .moon-circle {
        width: 80px;
        height: 80px;
    }
    
    .moon-icon-large {
        font-size: 48px;
    }
    
    .activity-stars {
        font-size: 24px;
    }
    
    .calendar-day {
        font-size: 11px;
    }
}

/* Legacy compatibility styles */
.moon-phase-container {
    text-align: center;
    padding: 10px;
    display: none; /* Hide old container */
}

.moon-phase-list {
    list-style-type: none;
    padding: 0;
}

.moon-phase-list li {
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 5px 0;
}

#moon-phase-table {
    width: 80%;
    margin: 10px auto;
    border-collapse: collapse;
    text-align: center;
}

#moon-phase-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

#moon-phase-table tr:last-child td {
    border-bottom: none;
}

/* Hunt Departure Calculator - Timeline Feature */
.hunt-timeline-toggle-bar {
    display: flex;
    gap: 0;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #4b5320;
    background: rgba(75, 83, 32, 0.1);
}

.timeline-toggle-btn {
    flex: 1;
    padding: 12px 16px;
    background: rgba(60, 60, 60, 0.6);
    color: #ccc;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timeline-toggle-btn:first-child {
    border-right: 1px solid #4b5320;
}

.timeline-toggle-btn:hover {
    background: rgba(75, 83, 32, 0.4);
    color: #fff;
}

.timeline-toggle-btn.active {
    background: rgba(75, 83, 32, 0.6);
    color: #FFD700;
    font-weight: bold;
}

.timeline-toggle-btn i {
    font-size: 16px;
}

/* Morning button - orange accent */
.timeline-toggle-btn.morning.active {
    border-top: 3px solid #ffa500;
}

/* Evening button - blue accent */
.timeline-toggle-btn.evening.active {
    border-top: 3px solid #4a90e2;
}

/* Timeline Container */
.hunt-timeline-container {
    display: none;
    margin-top: 0;
    padding: 20px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid #4b5320;
    border-top: none;
    border-radius: 0 0 8px 8px;
    animation: slideDown 0.3s ease;
}

.hunt-timeline-container.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Journey Layout */
.hunt-timeline {
    position: relative;
    padding: 10px 0;
}

/* Timeline Entry - Journey Map Style */
.timeline-entry {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 10px;
}

.timeline-entry:last-child {
    margin-bottom: 0;
}

/* Timeline Icon */
.timeline-icon {
    min-width: 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b5320 0%, #5a6328 100%);
    border: 3px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    z-index: 2;
    position: relative;
}

/* Timeline Content */
.timeline-content {
    flex: 1;
    background: rgba(75, 83, 32, 0.15);
    border: 1px solid rgba(75, 83, 32, 0.4);
    border-left: 4px solid #4b5320;
    border-radius: 8px;
    padding: 15px;
    position: relative;
}

.timeline-time {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.timeline-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.timeline-context {
    font-size: 13px;
    color: #bbb;
    font-style: italic;
}

/* Timeline Connector - Vertical Line */
.timeline-connector {
    position: absolute;
    left: 32px;
    top: 45px;
    width: 3px;
    height: calc(100% + 5px);
    background: linear-gradient(to bottom, #4b5320 0%, #3a4219 50%, #4b5320 100%);
    z-index: 1;
}

.timeline-entry:last-child .timeline-connector {
    display: none;
}

/* Start and End Markers */
.timeline-start .timeline-icon {
    background: linear-gradient(135deg, #8B0000 0%, #A00000 100%);
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.timeline-end .timeline-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.6);
}

/* Empty Timeline Message */
.timeline-empty {
    text-align: center;
    padding: 30px;
    color: #888;
    font-style: italic;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hunt-timeline-toggle-bar {
        flex-direction: row;
    }
    
    .timeline-toggle-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .timeline-toggle-btn i {
        font-size: 14px;
    }
    
    .hunt-timeline-container {
        padding: 15px;
    }
    
    .timeline-entry {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .timeline-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .timeline-connector {
        left: 29px;
        top: 40px;
    }
    
    .timeline-content {
        padding: 12px;
    }
    
    .timeline-time {
        font-size: 18px;
    }
    
    .timeline-label {
        font-size: 13px;
    }
    
    .timeline-context {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .timeline-toggle-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .timeline-icon {
        min-width: 35px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .timeline-connector {
        left: 27px;
        top: 35px;
    }
    
    .timeline-time {
        font-size: 16px;
    }
}

/* Map Wind Compass Overlay Styles */
.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.map-wind-compass {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 120px;
    height: 120px;
    z-index: 1000;
    background: rgba(40, 40, 40, 0.9);
    border-radius: 50%;
    border: 3px solid #4b5320;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.map-wind-compass:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.compass-outer-ring {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.compass-inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 83, 32, 0.3) 0%, transparent 70%);
}

.compass-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    color: #ff6b47;
    font-size: 18px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.compass-arrow.strong {
    animation: windPulse 2s infinite;
}

@keyframes windPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.compass-scent-cone {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 40px solid rgba(255, 107, 71, 0.3);
    transform: translate(-50%, -80%);
    transform-origin: center bottom;
    transition: all 0.3s ease;
}

.compass-scent-cone.active {
    animation: scentFade 4s infinite;
}

@keyframes scentFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.compass-direction {
    position: absolute;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.compass-n {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.compass-e {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.compass-s {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.compass-w {
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.compass-info {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(40, 40, 40, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #4b5320;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    min-width: 80px;
    text-align: center;
}

.compass-wind-speed {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 2px;
}

.compass-wind-dir {
    color: #ff6b47;
    font-size: 10px;
    font-weight: bold;
}

.compass-toggle {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(75, 83, 32, 0.9);
    border: 2px solid #4b5320;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.compass-toggle:hover {
    background: #4b5320;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.4);
}

/* Hide compass when toggled off */
.map-wind-compass.hidden {
    opacity: 0.3;
    pointer-events: none;
}


.map-wind-compass.hidden .compass-outer-ring,
.map-wind-compass.hidden .compass-info {
    visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-wind-compass {
        top: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    
    .compass-inner-circle {
        width: 60px;
        height: 60px;
    }
    
    .compass-arrow {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
    
    .compass-scent-cone {
        border-left-width: 12px;
        border-right-width: 12px;
        border-bottom-width: 32px;
    }
    
    .compass-direction {
        font-size: 10px;
    }
    
    .compass-info {
        bottom: -40px;
        padding: 6px 8px;
        min-width: 70px;
    }
    
    .compass-wind-speed {
        font-size: 10px;
    }
    
    .compass-wind-dir {
        font-size: 9px;
    }
    
    .compass-toggle {
        bottom: -60px;
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .map-wind-compass {
        top: 8px;
        right: 8px;
        width: 80px;
        height: 80px;
    }
    
    .compass-inner-circle {
        width: 50px;
        height: 50px;
    }
    
    .compass-arrow {
        width: 16px;
        height: 16px;
        font-size: 14px;
    }
    
    .compass-scent-cone {
        border-left-width: 10px;
        border-right-width: 10px;
        border-bottom-width: 25px;
    }
    
    .compass-direction {
        font-size: 9px;
    }
    
    .compass-info {
        bottom: -35px;
        padding: 4px 6px;
        min-width: 60px;
    }
    
    .compass-wind-speed {
        font-size: 9px;
    }
    
    .compass-wind-dir {
        font-size: 8px;
    }
    
    .compass-toggle {
        bottom: -50px;
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
}

/* Authentication Section */
.auth-section {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-container {
    width: 100%;
}

.auth-signed-out {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.auth-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.auth-info i {
    font-size: 20px;
    color: #2196F3;
}

.auth-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auth-title {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.auth-subtitle {
    color: #ccc;
    font-size: 12px;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4285f4;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.google-signin-btn:hover {
    background: #3367d6;
}

.google-signin-btn i {
    font-size: 16px;
}

/* Signed In State */
.auth-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.user-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.user-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    color: #ccc;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-actions {
    display: flex;
    gap: 8px;
}

.user-action-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.user-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Auth Loading State */
.auth-loading {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.auth-loading-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

/* User Preferences Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: #1a1a1a !important;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Specific override for user preferences modal - REMOVE ALL GREEN */
#user-preferences-modal {
    background: rgba(0, 0, 0, 0.8) !important;
}

#user-preferences-modal .modal-content {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#user-preferences-modal .modal-header {
    background: transparent !important;
}

#user-preferences-modal .modal-body {
    background: transparent !important;
}

#user-preferences-modal .modal-footer {
    background: transparent !important;
}

/* Override any green backgrounds in preference sections */
#user-preferences-modal .preference-section,
#user-preferences-modal .preference-item,
#user-preferences-modal .preference-label {
    background: transparent !important;
}

/* Ensure no green from army theme leaks into modal */
#user-preferences-modal * {
    background-color: transparent !important;
}

/* Restore intended backgrounds for specific elements */
#user-preferences-modal .modal-content {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#user-preferences-modal .preference-label:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

#user-preferences-modal .preference-note {
    background: rgba(255, 193, 7, 0.1) !important;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-body {
    padding: 20px;
}

.preference-section {
    margin-bottom: 25px;
}

.preference-section:last-child {
    margin-bottom: 0;
}

.preference-section h4 {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.preference-item {
    margin-bottom: 15px;
}

.preference-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.preference-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.preference-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.preference-title {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.preference-description {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
}

/* Custom Checkbox */
.preference-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.preference-label input[type="checkbox"]:checked + .checkmark {
    background: #2196F3;
    border-color: #2196F3;
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
}

.preference-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preference-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    padding: 10px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.preference-note i {
    color: #ffc107;
    margin-top: 2px;
    flex-shrink: 0;
}

.preference-note small {
    color: #fff;
    line-height: 1.4;
}

/* Modal footer */
.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.save-btn {
    background: none;
    border: 2px solid #555;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.save-btn:hover {
    border-color: #777;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Specific override for save-preferences-btn */
#save-preferences-btn {
    background: none !important;
    border: 2px solid #555 !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

#save-preferences-btn:hover {
    border-color: #777 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Data Management Buttons */
#export-data-btn {
    background: none;
    border: 2px solid #2196F3;
    color: #2196F3;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

#export-data-btn:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

#delete-all-data-btn {
    background: none;
    border: 2px solid #f44336;
    color: #f44336;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

#delete-all-data-btn:hover {
    background: rgba(244, 67, 54, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.2);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10001;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
}

.notification.error {
    background: #dc3545;
    border: 1px solid #bd2130;
}

.notification.info {
    background: #17a2b8;
    border: 1px solid #117a8b;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Admin Dashboard Modal Styles */
.admin-modal-content {
    max-width: none;
    width: 99vw;
    max-height: 98vh;
    overflow: hidden !important;
    margin: 10px auto;
}

.admin-modal-body {
    padding: 10px;
    height: calc(98vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Override base modal-content overflow for admin modal only */
#admin-dashboard-modal .modal-content {
    overflow: hidden !important;
    max-height: none !important;
}

.admin-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: #3e3e3e;
    border-radius: 8px;
    border: 1px solid #555;
}

.admin-btn {
    background: #4b5320;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.admin-btn:hover {
    background: #6b7330;
}

.admin-status {
    color: #ccc;
    font-size: 14px;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.admin-card {
    background: #3e3e3e;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #555;
    min-height: 180px;
}

.admin-card-full {
    grid-column: 1 / -1;
}

.admin-card h4 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-api-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #555;
    font-size: 13px;
}

.admin-api-item:last-child {
    border-bottom: none;
}

.admin-api-name {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    flex: 1;
    margin-right: 10px;
    word-wrap: break-word;
}

.admin-timing {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-timing-value {
    color: #fff;
    font-family: monospace;
    font-size: 13px;
}

.admin-timing-fast { color: #28a745; }
.admin-timing-medium { color: #ffc107; }
.admin-timing-slow { color: #dc3545; }

.admin-status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.admin-status-good { background: #28a745; }
.admin-status-warning { background: #ffc107; }
.admin-status-error { background: #dc3545; }

.admin-no-data {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
    font-size: 14px;
}

.admin-summary-section {
    background: #2a2a2a;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.admin-summary-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.admin-performance-rating {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.admin-rating-excellent { color: #28a745; }
.admin-rating-good { color: #6cb04a; }
.admin-rating-warning { color: #ffc107; }
.admin-rating-poor { color: #dc3545; }

@media (min-width: 1600px) {
    .admin-dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1200px) {
    .admin-dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-modal-content {
        width: 100vw;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .admin-controls {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        padding: 10px;
    }
    
    .admin-card {
        padding: 10px;
        min-height: auto;
    }
    
    .admin-api-name {
        font-size: 12px;
    }
    
    .admin-timing-value {
        font-size: 12px;
    }
}

/* Location Permission Modal Styles */
.location-permission-content {
    max-width: 500px;
    width: 90vw;
}

.permission-explanation {
    text-align: center;
}

.permission-explanation p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.permission-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.permission-benefits li {
    color: #fff;
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.permission-benefits li i {
    color: #4b5320;
    width: 20px;
    text-align: center;
}

.permission-note {
    background: rgba(75, 83, 32, 0.1);
    border: 1px solid rgba(75, 83, 32, 0.3);
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.permission-note i {
    color: #4b5320;
    margin-top: 2px;
    flex-shrink: 0;
}

.permission-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.permission-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    min-width: 150px;
    justify-content: center;
}

.allow-btn {
    background: #4b5320;
    color: white;
}

.allow-btn:hover {
    background: #6b7330;
    transform: translateY(-1px);
}

.deny-btn {
    background: #666;
    color: white;
}

.deny-btn:hover {
    background: #777;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .permission-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .permission-btn {
        min-width: auto;
    }
}

/* Responsive Design for Auth */
@media (max-width: 768px) {
    .auth-signed-out {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .google-signin-btn {
        justify-content: center;
    }
    
    .notification {
        top: 50%;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-50%);
        text-align: center;
    }
}

/* Deer Feeding Schedule Styles */
.feeding-schedule {
    margin-top: 20px;
}

.month-card {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #444;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.month-summary {
    color: #4b5320;
    font-size: 20px;
    margin: 0;
    text-align: center;
    border-bottom: 2px solid #4b5320;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    background-color: #3e3e3e;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s;
}

.month-summary:hover {
    background-color: #4b5320;
    color: #fff;
}

.month-card[open] .month-summary {
    background-color: #4b5320;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.month-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.month-card thead th {
    background-color: #4b5320;
    color: #fff;
    padding: 12px 8px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #555;
}

.month-card tbody td {
    padding: 10px 8px;
    border: 1px solid #555;
    vertical-align: middle;
    background-color: #3e3e3e;
}

.month-card tbody tr:nth-child(even) td {
    background-color: #404040;
}

.month-card tbody tr:hover td {
    background-color: #454545;
}

.leaf-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #666;
    background-color: #f8f8f8;
    padding: 2px;
}

.month-card tbody td:first-child {
    font-weight: bold;
    color: #fff;
}

.month-card tbody td:last-child {
    text-align: center;
    font-weight: bold;
    color: #4CAF50;
}

/* Responsive design for deer feeding schedule */
@media (max-width: 768px) {
    .month-card table {
        font-size: 12px;
    }
    
    .month-card thead th,
    .month-card tbody td {
        padding: 8px 4px;
    }
    
    .leaf-image {
        width: 30px;
        height: 30px;
    }
    
    .month-card h4 {
        font-size: 18px;
    }
}

