/* Customizing SweetAlert2 */
.swal2-popup {
    border-radius: 8px;
    /* Rounded corners */
    font-family: 'Arial', sans-serif;
    /* Simple font */
    background-color: #f5f5f5;
    /* Light background */
    color: #333;
    /* Dark text color for better contrast */
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    padding: 20px;
    /* Add padding for spacing */
}

.swal2-title {
    font-size: 14px;
    /* Slightly larger title */
    font-weight: 600;
    /* Make the title bold */
    margin-bottom: 10px;
    /* Add some space below the title */
}

.swal2-html-container {
    font-size: 12px;
    /* Content text size */
    color: #666;
    /* Slightly lighter text color */
}

.swal2-confirm,
.swal2-cancel {
    background-color: #4CAF50;
    /* Green button */
    color: #fff;
    /* White text */
    border-radius: 5px;
    /* Rounded corners */
    border: none;
    /* padding: 12px 24px; Button padding */
    font-size: 12px;
    /* Font size for button */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.swal2-button:hover {
    background-color: #45a049;
    /* Slightly darker green on hover */
}

.swal2-close {
    color: transparent;
    /* Hide the close button */
}

.swal2-select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px !important;
    box-sizing: border-box;
}
.swal2-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px !important;
    box-sizing: border-box;
}

.swal2-input-label {
    font-size: 12px;
    /* Label font size */
    color: #333;
    /* Dark text color */
    margin-bottom: 5px;
    /* Space between label and input */
}