body {
    font-family: Arial, sans-serif;
    background-color: transparent;
}

.hidden {
    display: none !important;
}

#alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-box {
    background-color: white;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.alert-header {
    background-color: #609ad4;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}

.alert-content {
    padding: 20px;
}

.alert-icon {
    font-size: 40px;
    color: #609ad4;
    margin-bottom: 10px;
}

.alert-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.alert-message {
    margin-bottom: 20px;
}

.alert-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    margin: 5px;
    cursor: pointer;
}

.okay-button {
    background-color: #609ad4;
    color: white;
}

.cancel-button {
    background-color: #f08080;
    color: white;
}
