/* Back in Stock Notification Styles */
.wc-back-in-stock-wrapper {
    margin: 20px 0;
    padding: 0;
}

#wc-back-in-stock-trigger {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

#wc-back-in-stock-trigger:hover {
    background-color: #005a87;
    color: white;
}

#wc-back-in-stock-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-top: 15px;
    max-width: 400px;
}

#wc-back-in-stock-form h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

#wc-back-in-stock-form p {
    margin-bottom: 15px;
}

#wc-back-in-stock-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

#wc-back-in-stock-form input[type="text"],
#wc-back-in-stock-form input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

#wc-back-in-stock-form input[type="text"]:focus,
#wc-back-in-stock-form input[type="email"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

#wc-back-in-stock-form button {
    margin-right: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

#wc-back-in-stock-form button[type="submit"] {
    background-color: #0073aa;
    color: white;
}

#wc-back-in-stock-form button[type="submit"]:hover {
    background-color: #005a87;
}

#wc-back-in-stock-form button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#wc-back-in-stock-cancel {
    background-color: #666;
    color: white;
}

#wc-back-in-stock-cancel:hover {
    background-color: #444;
}

/* Message styles */
.wc-bis-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 3px;
    margin-top: 10px;
}

.wc-bis-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 3px;
    margin-top: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    #wc-back-in-stock-form {
        max-width: 100%;
    }
    
    #wc-back-in-stock-form button {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}