/* Frontend styling for Notify Me button */
.notify-me-container {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.notify-me-container h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.notify-me-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notify-me-input-group {
    width: 100%;
}

.notify-me-input-group label{
        color: #000;
    font-weight: 400;
}

.notify-me-form input[type="email"],
.notify-me-form input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    transition: border-color 0.3s;
}

.notify-me-form input:focus {
    border-color: #ffa500;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.notify-me-button {
    background-color: #ffa500 !important;
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    width: 100%;
    margin-top: 5px;
}

.notify-me-button:hover {
    background-color: #e69500 !important;
}

/* Dark theme adjustments */
body.dark-theme .notify-me-container {
    background-color: #2a2a2a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

body.dark-theme .notify-me-container h4 {
    color: #f0f0f0;
}

body.dark-theme .notify-me-form input[type="email"],
body.dark-theme .notify-me-form input[type="tel"] {
    background-color: #333;
    border-color: #444;
    color: #f0f0f0;
}

body.dark-theme .notify-me-form input:focus {
    border-color: #ffa500;
}