#webarting-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#webarting-modal {
    background: #fff;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    animation: fadeIn 0.4s ease;
}

.webarting-modal-content {
    font-family: system-ui, sans-serif;
    font-size: 16px;
    color: #333;
}

.webarting-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.webarting-buttons button,
.webarting-buttons a {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#webarting-close-btn {
    background: #cccccc;
    color: #000;
}

#webarting-close-btn:hover {
    background: #bbbbbb;
}

#webarting-link-btn {
    background: #0073aa;
    color: #fff;
}

#webarting-link-btn:hover {
    background: #005f8d;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
