/* Custom Select Styles matching CodingNepal design */
.custom-select-container {
    width: 100%;
    position: relative;
}

.custom-select-container .select-btn {
    display: flex;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.custom-select-container .select-btn:hover {
    border-color: #3c8dbc;
}

.custom-select-container .btn-text {
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-container .arrow-dwn {
    display: flex;
    height: 21px;
    width: 21px;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    background: #3c8dbc;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.custom-select-menu {
    margin-top: 5px;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.custom-option {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option:hover {
    background-color: #f2f2f2;
}

.custom-option .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    margin-right: 12px;
    border: 1.5px solid #c0c0c0;
    transition: all 0.3s ease;
}

.custom-option.is-selected .checkbox {
    background-color: #3c8dbc;
    border-color: #3c8dbc;
}

.custom-option .check-icon {
    color: #fff;
    font-size: 9px;
    transform: scale(0);
    transition: all 0.2s ease-in-out;
}

.custom-option.is-selected .check-icon {
    transform: scale(1);
}

.custom-option .item-text {
    font-size: 14px;
    color: #333;
}

.create-new-option {
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 10px;
    text-align: center;
}

.create-new-btn {
    width: 100%;
    padding: 8px;
    background: #3c8dbc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.create-new-btn:hover {
    background: #367fa9;
}
