/* TechReady LLC - E-Learning Dashboard Styles */
.techready-dashboard-container {
    direction: rtl;
    text-align: right;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.techready-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.techready-welcome-title {
    color: #2c3e50;
    margin: 0;
    font-size: 24px;
}

.techready-role-badge {
    background: #3498db;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* Course and Stats Grid */
.techready-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Teacher Stats Cards */
.techready-stat-card {
    background: #fff;
    border-right: 5px solid #2ecc71;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.techready-stat-card h4 {
    margin: 0 0 10px 0;
    color: #7f8c8d;
}

.techready-stat-card .stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

/* Action Buttons */
.techready-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.techready-btn-primary {
    background: #1abc9c;
}

.techready-btn-primary:hover {
    background: #16a085;
}

.techready-btn-success {
    background: #27ae60;
}

.techready-btn-success:hover {
    background: #219653;
}