/**
 * Location Restriction Modal Styles
 * Created: 2025-12-23 - Mission Four Task #2
 * Purpose: Styling for location verification modal
 * Base: Uses modal-standard.css as foundation
 */

/* Location Modal Content - Larger width for detailed content */
.location-modal-content {
  max-width: 650px;
  padding: 2rem;
}

/* Primary Message */
.location-primary-message {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Section Styling */
.location-section {
  margin: 1.5rem 0;
  padding: 1rem;
  border-left: 3px solid #3498db;
  background: #f8f9fa;
  border-radius: 4px;
}

.location-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-section-title i {
  color: #3498db;
  font-size: 1.1rem;
}

/* Features List */
.location-features-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
}

.location-features-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.location-feature-allowed i {
  color: #27ae60;
  margin-top: 0.2rem;
}

.location-feature-restricted i {
  color: #e74c3c;
  margin-top: 0.2rem;
}

.location-restriction-note {
  color: #7f8c8d;
  font-size: 0.85rem;
  font-style: italic;
}

/* Help Section - Highlighted */
.location-help-section {
  background: #fff3cd;
  border-left-color: #ffc107;
}

.location-help-section .location-section-title {
  color: #856404;
}

.location-help-section .location-section-title i {
  color: #ffc107;
}

.location-support-link {
  color: #3498db;
  text-decoration: underline;
  font-weight: 500;
}

.location-support-link:hover {
  color: #2980b9;
}

/* Why Section */
.location-why-section {
  background: #e8f5e9;
  border-left-color: #4caf50;
}

.location-why-section .location-section-title i {
  color: #4caf50;
}

/* Welcome Section */
.location-welcome-section {
  background: #fff;
  border-left-color: #e74c3c;
  text-align: center;
}

.location-welcome-message {
  font-style: italic;
  color: #555;
  margin-bottom: 0;
}

.location-welcome-message i {
  color: #e74c3c;
  margin-right: 0.5rem;
}

/* Action Buttons */
.location-modal-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.location-modal-btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  min-width: 200px;
}

/* Text Utility Classes */
.text-success {
  color: #27ae60;
}

.text-danger {
  color: #e74c3c;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .location-modal-content {
    max-width: 95%;
    padding: 1.5rem;
  }

  .location-section {
    padding: 0.75rem;
    margin: 1rem 0;
  }

  .location-section-title {
    font-size: 0.95rem;
  }

  .location-features-list li {
    font-size: 0.9rem;
  }

  .location-modal-btn {
    min-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .location-modal-content {
    padding: 1rem;
  }

  .location-primary-message {
    font-size: 1rem;
  }

  .location-section {
    padding: 0.5rem;
  }

  .location-features-list li {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}
