/**
 * ConnecThrive Main Styles
 * 
 * @package ConnecThrive
 * @version 2.0.0
 */

/* Base Styles */
.connecthrive-student-coaching {
    padding: 20px 0;
}

.connecthrive-page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.connecthrive-page-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.connecthrive-page-header .subtitle {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Course Selector */
.course-selector-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.course-selector-bar label {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.course-selector-bar select {
    flex: 1;
    max-width: 400px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

/* No Data State */
.connecthrive-no-data {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.connecthrive-no-data i {
    color: #ccc;
    margin-bottom: 20px;
}

.connecthrive-no-data h3 {
    margin: 0 0 10px 0;
    color: #666;
}

.connecthrive-no-data p {
    margin: 0;
    color: #999;
}

/* Instructor Block */
.instructor-coach-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.instructor-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.instructor-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-info-header h3 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #333;
}

.instructor-role,
.session-count {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

/* Modals */
.connecthrive-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.connecthrive-modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.connecthrive-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.connecthrive-modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.connecthrive-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.connecthrive-modal-close:hover {
    color: #333;
}

/* Buttons */
.btn-connecthrive {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-connecthrive-primary {
    background: #2196F3;
    color: #fff;
}

.btn-connecthrive-primary:hover {
    background: #1976D2;
}

.btn-connecthrive:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .instructor-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .course-selector-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .course-selector-bar select {
        max-width: 100%;
    }
}
