        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }

        /* Loading Screen */
        #loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #282c34;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 9999;
        }

        /* Spinner Animation */
        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #61dafb;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

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

            100% {
                transform: rotate(360deg);
            }
        }

        /* Wizard  */

        .navbar {
            margin-bottom: 20px;
        }

        .wizard {
            max-width: 900px;
            margin: 20px auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .step {
            display: none;
        }

        .step.active {
            display: block;
        }

        .progress-bar {
            height: 6px;
            background-color: hsl(0, 0%, 83%);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .progress-bar-fill {
            height: 100%;
            width: 0;
            background-color: #6c63ff;
            transition: width 0.4s ease;
        }

        #finalForm {
            display: none;
            text-align: center;
            margin-top: 20px;
        }

        .success-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 400px;
            margin: auto;
        }

        .success-icon {
            color: #4CAF50;
            font-size: 50px;
            margin-bottom: 15px;
        }

        .success-message {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .success-text {
            font-size: 16px;
            margin-bottom: 20px;
            color: #555;
        }

        .success-button {
            padding: 10px 20px;
            background-color: #cad2dd;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
        }

        .success-button:hover {
            background-color: #6c757d;
        }

        .navbar-text h4 {
            color: black;
        }

        .icon {
            font-size: 50px;
            color: green;
        }

        /* Upload  */

        .upload-container {
            border: 1px dashed #d1d5db;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            margin: 20px auto;
            max-width: 500px;
            background-color: #f8f9fa;
        }

        .drag-area {
            border: 2px dashed #6c757d;
            padding: 30px;
            border-radius: 5px;
            color: #6c757d;
            margin: 10px 0;
            background-color: #e9ecef;
            cursor: pointer;
        }

        .drag-area:hover {
            background-color: #f1f3f5;
        }

        .progress-upload {
            height: 20px;
            margin-top: 10px;
        }

        .progress-bar-upload {
            background-color: #cad2dd;
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 20px;
        }


        .thumbnail {
            max-width: 150px;
            margin-top: 10px;
        }

        .file-icon {
            font-size: 48px;
            color: #d9534f;
        }

        .download-link {
            margin-top: 10px;
            display: block;
        }

        .question-container {
            margin: 15px 0;
        }

        /* Add Form */

        /* .form-card-cancha {
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 15px;
            background-color: #f8f9fa;
            padding: 15px;
        } */

        .form-section {
            margin-bottom: 15px;
        }

        .combo-group {
            display: flex;
            justify-content: space-around;
        }

        .otras-areas-table .select-col,
        .otras-areas-table .condition-col {
            min-width: 110px;
        }

        /* Column widths for step 5 table */
        #otrasAreasTable th:nth-child(1),
        #otrasAreasTable td:nth-child(1) {
            width: 30%;
        }

        #otrasAreasTable th:nth-child(2),
        #otrasAreasTable td:nth-child(2) {
            width: 10%;
        }

        #otrasAreasTable th:nth-child(3),
        #otrasAreasTable td:nth-child(3) {
            width: 20%;
        }

        #otrasAreasTable th:nth-child(4),
        #otrasAreasTable td:nth-child(4),
        #otrasAreasTable th:nth-child(5),
        #otrasAreasTable td:nth-child(5) {
            width: 20%;
        }

        .otras-areas-select,
        .otras-areas-condition {
            width: 100%;
        }

        /* Column widths for "Población Estudiantil" table */
        #poblacionTable th:nth-child(1),
        #poblacionTable td:nth-child(1) {
            width: 30%;
        }

        #poblacionTable th:nth-child(2),
        #poblacionTable td:nth-child(2),
        #poblacionTable th:nth-child(3),
        #poblacionTable td:nth-child(3),
        #poblacionTable th:nth-child(4),
        #poblacionTable td:nth-child(4),
        #poblacionTable th:nth-child(5),
        #poblacionTable td:nth-child(5) {
            width: 15%;
        }

        #poblacionTable th:nth-child(6),
        #poblacionTable td:nth-child(6) {
            width: 10%;
        }
