
        /* Basic styles */
        .custom-select-wrapper {
            position: relative;
            width: 200px;
        }

        .custom-select {
            background-color: #f4f4f4;
            padding: 10px;
            font-size: 15px;
            cursor: pointer;
            border-radius: 5px;
            border: 1px solid #ccc;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .selected-option {
            flex: 1;
        }

        .dropdown-arrow {
            margin-left: 10px;
            font-size: 12px;
        }

        .options {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
            text-align: center;
        }

        .option {
            padding: 10px;
            cursor: pointer;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }

        .option:hover {
            background-color: #f0f0f0;
        }

        .option.selected {
            background-color: #228208;
            color: white;
        }

        /*  */

        table tbody tr:nth-child(odd) {
            background-color: #f9f9f9; 
        }
    
        table tbody tr:nth-child(even) {
            background-color: #ffffff; 
        }
    
        table {
            width: 100%;
            border-collapse: collapse;
        }
    
        th, td {
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd;
        }
    
        th {
            background-color: #eee;
        }
