/* Custom Checkbox Styles */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #828282;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #28a745;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-in-out;
    background-color: white;
    position: relative;
    margin-top: 2px;
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.custom-checkbox input[type="checkbox"]::before {
    content: '✔';
    font-size: 12px;
    font-weight: bold;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.custom-checkbox input[type="checkbox"]:checked::before {
    display: block;
}

.custom-checkbox label {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: flex-start;
    margin: 4px;
}

/* SweetAlert Custom Styles */
.swal2-popup {
    font-size: 1.2rem !important;
    font-family: Arial, sans-serif;
    padding: 2em !important;
    width: 42em !important;
    max-width: 90% !important;
}

.swal2-title {
    font-size: 1.8rem !important;
    color: #333;
    margin-bottom: 1em !important;
    padding-bottom: 0.5em !important;
}

.swal2-html-container {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
    color: #444;
    margin: 1em 0 !important;
    padding: 0.5em !important;
}

.swal2-confirm {
    padding: 12px 30px !important;
    font-size: 1.2rem !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .swal2-popup {
        font-size: 1rem !important;
        padding: 1.5em !important;
        width: 90% !important;
    }

    .swal2-title {
        font-size: 1.4rem !important;
    }

    .swal2-html-container {
        font-size: 1.1rem !important;
    }

    .swal2-confirm {
        padding: 10px 24px !important;
        font-size: 1.1rem !important;
    }
} 