/* Custom alert box styling */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    color: #000;
    font-size: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    line-height: 1.4;
}

/* Close button styling */
#closeAlert {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #ff813f;
}

#closeAlert:hover {
    opacity: 0.7;
}

/* Facebook button styling */
.facebook-button {
    background-color: #4267B2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.facebook-button:hover {
    background-color: #365899;
    color: white;
    text-decoration: none;
}

/* Buy Me a Coffee button styling */
.buy-coffee-btn {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
}

.buy-coffee-btn img {
    width: 173px;
    height: auto;
}

/* Overlay background */
.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Responsive design */
@media (max-width: 768px) {
    .custom-alert {
        width: 95%;
        padding: 15px;
        font-size: 18px;
    }
    
    .facebook-button {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .buy-coffee-btn img {
        width: 150px;
    }
}