.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Default checkbox */
.checkbox-default {
    border: 2px solid #d1d5db;
    background-color: transparent;
}

.dark .checkbox-default {
    border-color: #4b5563;
}

.checkbox-default:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.checkbox-default:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Filled checkbox */
.checkbox-filled {
    border: 2px solid #6366f1;
    background-color: #6366f1;
}

.checkbox-filled:not(:checked) {
    background-color: transparent;
}

.checkbox-filled:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Round checkbox */
.checkbox-round {
    border: 2px solid #d1d5db;
    border-radius: 9999px;
}

.dark .checkbox-round {
    border-color: #4b5563;
}

.checkbox-round:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.checkbox-round:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

select{
    appearance: none;
}

.custom-select {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23FFF"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414L10 13.414 5.293 8.707a1 1 0 010-1.414z"/></svg>');
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
    padding-right: 2.5rem;
  }