    :root {
        --primary-color: #2e7d32;
        --secondary-color: #f1f8e9;
        --accent-color: #4caf50;
        --border-color: #ddd;
        --section-bg: #f9f9f9;
    }

    
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
        background-color: #f5f5f5;
        color: #333;
        line-height: 1.6;
        padding: 20px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    header {
        background-color: var(--primary-color);
        color: white;
        padding: 25px 40px;
        text-align: center;
    }
    
    header h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    header p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .form-container {
        padding: 30px 40px;
    }
    
    .form-section {
        margin-bottom: 35px;
        padding: 15px;
        background-color: var(--section-bg);
        border-radius: 8px;
        border-left: 4px solid var(--accent-color);
    }
    
    .section-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-color);
        color: var(--primary-color);
        display: flex;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        margin-right: 15px;
    }
    
    .section-header .section-number {
        background-color: var(--primary-color);
        color: white;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-right: 15px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    
    .form-col {
        padding: 0 10px;
        flex: 1;
        min-width: 250px;
        margin-bottom: 15px;
    }
    
    label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #555;
    }
    
    input, select, textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    }
    
    .checkbox-group-license {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    /* Vertical checkbox group */
    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0 -10px;
    }

    /* Base checkbox item */
    .checkbox-item {
        padding: 0 10px;
        margin-bottom: 8px;
        min-width: 200px;
    }

    /* Checkbox items with inputs */
    .checkbox-item.with-input {
        display: flex;
        flex-direction: column;
    }

    /* Label styling */
    .checkbox-item label {
        font-weight: normal;
        display: flex;
        align-items: center;
        margin-bottom: 4px; /* Space between label and input */
    }

    /* Checkbox styling */
    .checkbox-item input[type="checkbox"] {
        width: auto;
        margin-right: 8px;
    }

    /* Input field styling */
    .checkbox-ka-input {
        width: 95%; /* Full width of container */
        padding: 10px 12px;
        font-size: 1rem;
        margin-left: 15px; /* Align with checkbox (approx. checkbox width + margin) */
        box-sizing: border-box;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    /* For checkboxes that don't have inputs */
    .checkbox-item:not(.with-input) label {
        margin-bottom: 0; /* Remove extra space */
    }
    
    .dynamic-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        overflow-x: auto;
        display: block;
    }
    
    .dynamic-table th {
        padding: 11px 13px; 
        text-align: left;
        border: 1px solid var(--border-color);
    }
    .dynamic-table th, .dynamic-table td {
        padding: 3px 3px; 
        /*decreases by 2 and 3 respectively*/
        text-align: left;
        border: 1px solid var(--border-color);
    }

    /* increasing input box */
    .dynamic-table td input {
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

    
    .dynamic-table th {
        background-color: var(--secondary-color);
        font-weight: 600;
    }
    
    .dynamic-table tr:nth-child(even) {
        background-color: #f8f8f8;
    }
    
    .btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        transition: background-color 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn:hover {
        background-color: var(--primary-color);
    }

    /* hindi language ke liye buttton */
    .btn-lang{
        background-color: #37923b;
        margin: 15px 5px;
        align-items: center;
        max-width: 200px;
        padding: 10px 10px;
        font-size: 1rem;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    
    .btn-add {
        background-color: #2196f3;
        margin: 15px 0;
    }
    
    .btn-add:hover {
        background-color: #0b7dda;
    }
    
    .btn-remove {
        background-color: #f44336;
        padding: 4px 6px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .btn-remove:hover {
        background-color: #c62c2c;
    }
    
    .btn-submit {
        background-color: var(--primary-color);
        padding: 15px 40px;
        font-size: 1.1rem;
        margin-top: 20px;
    }
    
    .btn-submit:hover {
        background-color: #1b5e20;
    }
    
    .note {
        font-size: 0.9rem;
        color: #666;
        font-style: italic;
        margin-top: 5px;
    }
    
    .form-footer {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }

    /* Hide number input spinners in Chrome, Safari, Edge */
    .dynamic-table input[type=number]::-webkit-outer-spin-button,
    .dynamic-table input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Hide number input spinners in Firefox */
    .dynamic-table input[type=number] {
        -moz-appearance: textfield;
        appearance: null;
    }

    .modal {
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
}

.modal-content {
  background-color: #ebf5e9;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#close-alert {
  margin-top: 15px;
  padding: 8px 16px;
  border: none;
  background-color: #2c7be5;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* Loader Overlay Styles */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 0, 0.5); /* Dark green transparent background */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  border: 8px solid #c6f6d5; /* Light green border */
  border-top: 8px solid #2f855a; /* Darker green spinner */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#fpo-office-address {
  background-color: #fff !important;
  color: #000 !important;
  pointer-events: auto !important;
  border: 1px solid var(--border-color);
}

/* -------------------------------------- fpo evaluation ki css ------------------------------ */


/* Additions for Evaluation Form */
/* Progress Bar */
/* Improved MCQ Options Styling */
.mcq-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.mcq-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  background-color: white;
}

.mcq-option:hover {
  background-color: var(--secondary-color);
  border-color: var(--accent-color);
}

/* Change radio circles to square checkboxes */
.mcq-option input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 2px; /* Slightly rounded corners for squares */
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

/* Checked state styling */
.mcq-option input[type="radio"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Checkmark for checked state */
.mcq-option input[type="radio"]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Focus state */
.mcq-option input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.3);
}

/* Disabled state */
.mcq-option input[type="radio"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Section Scoring (hidden as per requirement) */
.section-score {
  display: none;
}

/* ------------------------------------------------------------------------------------------------------- */
    
    @media (max-width: 768px) {
        .form-container {
            padding: 20px;
        }
        
        .form-col {
            flex: 0 0 100%;
        }
        
        .checkbox-item {
            min-width: 100%;
        }
        
        .dynamic-table {
            display: block;
            overflow-x: auto;
        }
    }