/* TEACHER DASHBOARD BASE STYLES */
.jks-teacher-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.jks-teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Card Style */
.jks-card {
    border-radius: 22px;
    padding: 25px;
    color: white;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.2s;
}

.jks-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* Color themes */
.jks-card--green {
    background: linear-gradient(135deg, #009846, #00ad52);
}
.jks-card--yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.jks-card--blue {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}
.jks-card--pink {
    background: linear-gradient(135deg, #ec4899, #d946ef);
}

/* Card subtitle tag */
.jks-card__tag {
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Card button */
.jks-card__footer a {
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    display: inline-block;
    text-decoration: none;
}

.jks-card__footer a:hover {
    background: rgba(255,255,255,0.25);
}

.jks-dashboard-grid-single {
    max-width: 700px;
    margin: 40px auto;
}

.jks-form label {
    display: block;
    margin-bottom: 5px;
}

.jks-form select,
.jks-form input[type="text"],
.jks-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

