.create-student {
    margin-top: 10vh;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    max-width: 100%;
}

.student-details{
    margin-top: 15vh;
}

.btn-warning {
    background-color: #ffc107;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#studentModal{
    margin-top: 10vh;
}

.btn-warning:hover {
    background-color: #e0a800;
    text-decoration-color: aliceblue;
}

.student_modal-form{
    margin-top: 15vh;
}

.student-list{
    max-width: 100%;
}

.action-dot{
    cursor: pointer;
}

.student-confirmation {
    position: relative;
}

#studentModal{
    max-width: 100%;
}

.student-action {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* z-index: 10; */
}

.action-dot {
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 25px;
}

.action-update{
    z-index: 10;
}
.action-update li {
    padding: 5px;
    right: 5vh;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.action-update li:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.action-update li i {
    margin-right: 8px;
}

.action-update li {
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

/* Icon Styling */
.action-update li i {
    margin-right: 10px;
    font-size: 16px;
}

.action-update li {
    color: #212529 !;
}

/* Hover Effects */
.action-update li:hover {
    background-color: #f1f1f1; /* Light Gray */
    color: #0056b3; /* Dark Blue */
}

.modal-header {
    border-bottom: 2px solid #007bff; /* Add subtle border under header */
    border-radius: 10px 10px 0 0;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
}

.school_name {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.btn-secondary, .btn-success {
    border-radius: 20px;
}

.modal-content {
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 600px) {
    .create-student {
        padding: 5px;
    }
    .btn-warning {
        padding: 8px 16px;
        font-size: 14px;
    }
    .student-details{
        margin-top: 20vh;
    }
}