.students-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.students-header h1 {
    font-size: 22px;
    font-weight: 600;
}

/* Modal dialog or simple overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-medium);
    padding: 24px;
    width: 480px;
    box-shadow: 0 4px 12px rgba(15, 15, 15, 0.1);
}

.modal-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 24px;
}

/* Student detail panels */
.student-profile {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.student-info-panel {
    flex: 1;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    padding: 20px;
}

.student-mailboxes-panel {
    width: 400px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    padding: 20px;
}

.mailbox-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    margin-bottom: 8px;
    background-color: var(--color-bg-secondary);
}

.mailbox-item:last-child {
    margin-bottom: 0;
}

.mailbox-address {
    font-weight: 600;
    font-size: 13px;
}
