/* Frontend Styles */
#astro-notify-btn {
    background: #a682ff;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

#astro-notify-btn:hover {
    background: #8e6ad8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 130, 255, 0.3);
}

#astro-notify-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.astro-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.astro-modal-content {
    position: relative;
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    direction: rtl;
    text-align: right;
}

.astro-modal-close {
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.astro-modal-close:hover {
    color: #000;
}

.astro-modal-content h3 {
    margin-top: 0;
    color: #333;
}

.astro-modal-content p {
    color: #666;
    line-height: 1.6;
}

#astro-notify-form input[type="text"],
#astro-notify-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

#astro-notify-form button {
    width: 100%;
    background: #0073aa;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

#astro-notify-form button:hover {
    background: #005a87;
}

#astro-notify-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#astro-notify-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#astro-notify-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}