.container-student-satisfaction-survey {
    width: 100%;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.check-list-student-satisfaction-survey {
    list-style: none;
    padding: 0;
}

.check-list-student-satisfaction-survey li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.check-list-student-satisfaction-survey li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #e3400d;
    background-color: #e0f7f1;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    transition: transform 0.3s;
}

.check-list-student-satisfaction-survey li a {
    color: #333;
    text-decoration: none;
    background: #f0f0f0;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
}

.check-list-student-satisfaction-survey li a:hover {
    background: #e3400d;
    color: white;
    transform: translateX(5px);
}

.check-list-student-satisfaction-survey li:hover::before {
    transform: scale(1.2) rotate(20deg);
}

.loading-msg,
.no-data,
.error-msg {
    font-style: italic;
    color: #555;
}

@media (max-width: 600px) {
    .container-student-satisfaction-survey {
        padding: 20px;
    }
    .check-list-student-satisfaction-survey li {
        padding-left: 30px;
    }
    .check-list-student-satisfaction-survey li a {
        font-size: 15px;
    }
}