 .search-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 25px;
            text-align: left;
        }

        .search-form label {
            font-weight: bold;
        }

        .search-form input,
        .search-form select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        .search-btn {
            padding: 12px;
            background-color: #25427C;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            width: 25%;
        }

        .search-btn:hover {
            background-color: #193568;
        }

        .result-container {
            margin-top: 20px;
        }

        .result-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .result-table th,
        .result-table td {
            padding: 12px;
            border-bottom: 1px solid #ccc;
            text-align: left;
        }

        .result-table th {
            background-color: #25427C;
            color: white;
        }

        .result-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .custom-select-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
            max-width: 400px;
        }

        .custom-select {
            appearance: none;
            width: 100%;
            padding: 10px 14px;
            font-size: 16px;
            border: 2px solid #ccc;
            border-radius: 8px;
            background-color: #fff;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='%23000' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px 12px;
            cursor: pointer;
            transition: border-color 0.3s ease;
        }

        .custom-select:focus {
            border-color: #007BFF;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
        }
        .table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-responsive table {
    min-width: 400px; /* Puedes ajustar según la cantidad de columnas */
}
        