/* Main list row */
.details-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 10px 15px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    background: #fff;
    border-radius: 12px;
}

/* Profile picture */
.details-list .profile-pic img,
.details-list .profile-pic1 img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

/* Expand button */
.plus-expand {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

/* Student details box */
.details-cont {
    position: relative;
    background: #f9f9f9;
    padding: 36px 30px;
    border: 1px solid #ddd;
    margin-bottom: 22px;
    border-radius: 30px;
}

/* Blur overlay when locked */
.blur-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    z-index: 10;
}
.lock-message {
    text-align: center;
}
.lock-message i {
    font-size: 32px;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

/* Hide content when locked */
.details-content {
    pointer-events: none;
}

/* Individual detail items */
.detail-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.detail-item i {
    color: #a21035; /* match brand accent */
    font-size: 16px;
}

/* Pagination active state */
.active>.page-link, .page-link.active {
    background-color: #a21035;
    border-color: #a21035;
    color: #fff;
}

/* Loader */
.loader {
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
}

.domain-list .domain-item {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.domain-list .domain-item:hover {
    transform: scale(1.05);
}
