/* Styles extracted from includes/header.php */

.awt-admin-notice-overlay {
    position: fixed;
    top: var(--awt-admin-notice-offset, 0px);
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.awt-admin-notice-modal {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 18px 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border: 1px solid #e0e0e0;
}

.awt-admin-notice-modal h2 {
    margin: 0 0 6px;
    font-size: 1.25rem;
}

.awt-admin-notice-modal p {
    margin: 0 0 12px;
    color: #444;
    line-height: 1.5;
}

.awt-admin-notice-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.awt-admin-notice-actions a,
.awt-admin-notice-actions button {
    appearance: none;
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.awt-admin-notice-primary {
    background: #2c5f2d;
    color: #fff;
}

.awt-admin-notice-secondary {
    background: #f1f3f5;
    color: #222;
}

@media (max-width: 768px) {
    .awt-admin-notice-overlay {
        align-items: flex-start;
        padding: 16px;
        padding-top: 20px;
    }

    .awt-admin-notice-modal {
        max-width: 100%;
    }
}
