/**
 * Make Ready Connect - Woo - Waitlists
 * Frontend Styles
 */

/* Archive Pages - Waitlist Price Text */
.mra-waitlist-archive-text {
    display: inline-block;
    color: #666;
    font-size: 0.95em;
}

.mra-waitlist-archive-text a {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mra-waitlist-archive-text a:hover {
    color: #135e96;
    text-decoration: underline;
}

/* Archive Pages - Waitlist Button */
.button.mra-waitlist-button {
    background-color: #f0f0f0;
    border: 1px solid #d5d5d5;
    color: #333;
    transition: all 0.3s ease;
}

.button.mra-waitlist-button:hover {
    background-color: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

/* Single Product Page - Waitlist Message */
.mra-waitlist-message {
    background-color: #f8f9fa;
    border-left: 4px solid #2271b1;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    line-height: 1.6;
}

.mra-waitlist-message strong {
    display: block;
    font-size: 1.1em;
    color: #2271b1;
}

.mra-waitlist-message a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mra-waitlist-message a:hover {
    color: #135e96;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mra-waitlist-message {
        padding: 15px;
        font-size: 0.95em;
    }

    .mra-waitlist-archive-text {
        font-size: 0.9em;
    }
}
