
.expert-student-lists-form input[type=text] {
    display: flex;
width: 1104px;
padding: 16px 20px;
align-items: flex-start;
gap: 8px;
border-radius: 10px;
border: 1px solid var(--Grey-100, #D2D2D2);
background: var(--white, #FFF);
}

.expert-student-lists-header {
    margin-bottom: 15px;
  
}

.expert-student-lists-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.expert-student-lists-input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    flex: 2;
    min-width: 200px;
}

.expert-student-lists-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    min-width: 140px;
}

.expert-student-lists-table-header {
    width: 100%;
    display: flex;
    padding: 12px 16px;
    color: #6b7280;
    background: #ffffff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.expert-student-lists-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    align-items: center;
    justify-content: space-between;
}

.expert-student-lists-table {
    width: 100%;
    background: white;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}

.expert-student-lists-col {
    width: 100%;
    display: flex;
	align-items: center;
	justify-content: flex-start;
    min-width: 120px;
}

.expert-student-lists-plan {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    border-radius: 10px;
    width: 73px;
}

.expert-student-lists-actions {
    display: flex;
	justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}

.expert-student-lists-action-link {
    padding: 4px 10px;
    border-radius: 8px;
    text-decoration: none;
}

.expert-student-lists-action-link.report {
    border: 1px solid #d1d5db;
    color: #3b82f6;
    background: white;
}

.expert-student-lists-action-link.profile {
    border: none;
    color: white;
    background: #3b82f6;
}

.expert-student-lists-separator {
    height: 1px;
    background: #f3f4f6;
}

.expert-student-lists-pagination {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.expert-student-lists-pagination a {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    color: #000039;
    text-decoration: none;
    
}
.expert-student-lists-pagination a.active {
    background: #000039;
    color: #ffffff;
}




.expert-student-lists-footer {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 24px;
}

.expert-btn {
    display: flex;
    width: 191px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #000039;
    background: #FFF;
    cursor: pointer;
    color: #000039;
    transition: background 0.3s ease;
}

.expert-btn:hover {
    background: none;
color: #000039;
}