/**
 * Wortev Tutor Bridge CSS
 * Frontend styles for the plugin
 */

/* Premium enrollment button styles */
.wtb-ajax-enroll {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.wtb-ajax-enroll:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Premium access indicators */
.price-membership-notice {
    color: #00a32a !important;
    font-weight: 600;
}

/* Success state for buttons */
.tutor-btn-success {
    background-color: #00a32a !important;
    border-color: #00a32a !important;
    color: white !important;
}

/* Demo access styles */
.wtb-demo-buttons {
    margin-top: 15px;
}

.wtb-premium-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Course page specific styles */
.tutor-course-purchase-box {
    position: relative;
}

/* Loading states */
.wtb-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .wtb-premium-highlight {
        padding: 15px;
        margin: 15px 0;
    }
}
