.swal-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.swal-modal {
    border-radius: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.swal-title {
    color: #000000;
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.swal-text {
    color: #000000;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.swal-button {
    background-color: #ff4545;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.swal-button:hover {
    background-color: #2bbd8e;
}

/* Dark Mode Styles */
body.dark-mode .swal-overlay {
    background-color: rgba(34, 34, 34, 0.9); /* Dark mode grey */
}

body.dark-mode .swal-title {
    color: #fff;
}

body.dark-mode .swal-modal {
    background-color: #2c2c2c;
}

body.dark-mode .swal-text {
    color: #fff;
}

body.dark-mode .swal-button {
    background-color: #2bbd8e;
}
