/* report.css */
    :root {
      --primary: #FF6B35;
      --secondary: #004E89;
      --accent: #FFD166;
      --light: rgba(255, 255, 255, 0.9);
      --dark: #1A1A1D;
      --transition: all 0.3s ease;
      --success: #22c55e;
      --error: #ef4444;
      --warning: #f59e0b;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--light);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .background-container {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 100%;
      background: url("images/background-PARMISA.jpg") no-repeat center center / cover;
      z-index: -2;
    }

    .background-container::after {
      content: ""; position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: -1;
    }

    .navbar {
      z-index: 10; padding: 1.5rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
      position: relative;
    }

    .navbar-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem; font-weight: 700;
      color: var(--light); text-decoration: none;
    }

    .navbar-brand span { color: var(--primary); }
    
    #menuToggle {
      display: none;
      background: none;
      border: none;
      color: var(--light);
      font-size: 1.8rem;
      cursor: pointer;
      order: 1;
    }
    
    nav {
      display: flex;
      gap: 2rem;
    }
    
    nav a {
      color: var(--light); text-decoration: none; font-weight: 500;
      transition: var(--transition);
    }
    nav a:hover { color: var(--primary); }

    main {
      flex: 1; padding: 2rem; display: flex; justify-content: center; align-items: flex-start;
    }

    form {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 2rem; border-radius: 10px; width: 100%; max-width: 600px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    form label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
    input, textarea, select {
      width: 100%; padding: 0.6rem; margin-bottom: 1rem;
      border-radius: 5px; border: none; font-size: 1rem;
      background: rgba(255,255,255,0.9);
    }

    input[type="file"] { background: var(--light); color: var(--dark); }
    
    .file-upload-section {
      margin-bottom: 1rem;
    }
    
    .upload-restrictions {
      background: rgba(255, 215, 102, 0.15);
      border: 1px solid rgba(255, 215, 102, 0.3);
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      color: var(--accent);
    }
    
    .upload-restrictions h4 {
      margin-bottom: 0.5rem;
      color: var(--accent);
      font-weight: 600;
    }
    
    .upload-restrictions ul {
      margin-left: 1rem;
      margin-bottom: 0;
    }
    
    .upload-restrictions li {
      margin-bottom: 0.25rem;
    }
    
    .file-error {
      background: rgba(239, 68, 68, 0.2);
      color: var(--error);
      border: 1px solid rgba(239, 68, 68, 0.3);
      border-radius: 5px;
      padding: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      display: none;
    }
    
    .file-success {
      background: rgba(34, 197, 94, 0.2);
      color: var(--success);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 5px;
      padding: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      display: none;
    }

    #map {
      height: 300px; width: 100%; margin-bottom: 1rem;
      border-radius: 8px; border: 2px solid var(--primary);
    }

    button {
      background: var(--primary); color: #fff;
      padding: 0.7rem 1.5rem; border-radius: 50px; border: none;
      cursor: pointer; font-weight: 600; transition: var(--transition);
      width: 100%;
    }

    button:hover { background: #e05c28; }
    
    .location-button {
      background: var(--secondary);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    
    .location-button:hover { background: #003d6b; }
    
    #status {
      margin-top: 1rem; font-size: 1rem; color: var(--accent); text-align: center;
    }
    footer {
      text-align: center; padding: 1rem; font-size: 0.9rem; opacity: 0.6;
    }
    
    /* Location popup styling */
    .location-popup {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--secondary);
      color: white;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 1000;
      display: none;
      max-width: 90%;
      text-align: center;
    }
    
    .location-popup.success {
      background: #28a745;
    }
    
    .location-popup.error {
      background: #dc3545;
    }
    
    .pac-container {
      z-index: 1051 !important;
    }
    
    .loading {
      opacity: 0.7;
      pointer-events: none;
    }
    
    .spinner {
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2px solid #ffffff;
      border-radius: 50%;
      border-top-color: transparent;
      animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .loading-message {
      background: var(--secondary);
      color: white;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
    }
    
    @media (max-width: 768px) {
      .navbar {
        padding: 1rem;
        flex-wrap: wrap;
      }
      
      #menuToggle {
        display: block;
      }
      
      nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
      }
      
      nav.show {
        display: flex;
      }
      
      nav a {
        margin-left: 0;
        padding: 0.5rem 0;
      }
      
      main {
        padding: 1rem;
      }
      
      form {
        padding: 1.5rem;
      }
    }
