.pointeronhover:hover {
    cursor: pointer;
}

.kids-table thead {
    background: linear-gradient(90deg, #ffde59, #ff914d);
    color: #4a2c2a;
    font-weight: bold;
    font-size: 1.1rem;
}

.kids-table tbody tr:nth-child(even) {
    background-color: #fff8e7;
}

.kids-table tbody tr:hover {
    background-color: #ffe4c4;
    transition: background-color 0.3s;
}

.kids-table td,
.kids-table th {
    vertical-align: middle;
    padding: 1rem;
}

.kids-table .btn {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
}

.kids-table .btn-fun {
    background-color: #ff70a6;
    color: white;
}

.kids-table .btn-fun:hover {
    background-color: #ff4f88;
}

.kids-table .btn-view {
    background-color: #70d6ff;
    color: white;
}

.kids-table .btn-view:hover {
    background-color: #3abded;
}

.kids-table .btn-edit {
    background-color: #bde0fe;
    color: #0c3b67;
}

.kids-table .btn-edit:hover {
    background-color: #a2d2ff;
}

/* Student Panel Styles */
.instructor-profile-left-part ul li a {
    display: block;
    padding: 12px 20px;
    color: #52526C;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.instructor-profile-left-part ul li a:hover {
    background-color: rgba(243, 159, 95, 0.1);
    color: #F39F5F;
}

.instructor-profile-left-part ul li a.active {
    background-color: #F39F5F;
    color: #ffffff;
}

.instructor-profile-left-part ul li a .iconify {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

/* Kids Themed Table for Progress Tracking */
.kids-themed-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

.kids-themed-table thead {
    background: linear-gradient(90deg, #ffde59, #ff914d);
    color: #4a2c2a;
}

.kids-themed-table thead th {
    padding: 15px;
    font-weight: bold;
    text-align: left;
    border: none;
}

.kids-themed-table tbody tr {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.kids-themed-table tbody tr:nth-child(even) {
    background-color: #fff8e7;
}

.kids-themed-table tbody tr:hover {
    background-color: #ffe4c4;
    transition: background-color 0.3s;
}

.kids-themed-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border: none;
}

/* Dashboard Cards */
.instructor-dashboard-top-part-item {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.instructor-dashboard-top-part-item:hover {
    box-shadow: 0 5px 20px rgba(243, 159, 95, 0.2);
    transform: translateY(-5px);
}

.recently-added-courses-box {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.recently-added-courses-box:hover {
    box-shadow: 0 5px 20px rgba(243, 159, 95, 0.15);
}