.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;
}