.container {
    margin-top: 20px;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
}

#upload-form {
    border: 1px dashed #007bff;
    border-radius: 5px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
    max-width: 100%;
    text-align: center;
    color: #6c757d;
    font-family: Arial, sans-serif;
}
#upload-form h2 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
}
#upload-form p {
    margin: 0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
/* #dropZone {
    margin-top: 10px;
    border: 2px dashed #007bff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f8f9fa;
    color: #007bff;
}
#dropZone.dragover {
    background-color: #e8f7ff;
} */
#fileName {
    margin-top: 10px;
    font-style: italic;
    color: #007bff;
}

#export-btn {
    margin-top: -6px;
    border-radius: 1rem;
    background-color: #362d86;
    color: white;
}

#export-csv-btn {
    border-radius: 1rem;
    margin-top: -10px;
    background-color: #362d86;
    color: white;
}

#updateBtn{
    border-radius: 1rem;
    background-color: #362d86;
    color: white;
}
#updateBtn:hover{
    border-radius: 1rem;
    border: 2px solid #362d86;
    background-color: white;
    color: #362d86;
}
#btn-edit{
    border-radius: 2rem;
    border: 2px solid #362d86;
    background-color: #362d86;
    color: white;
}
#btn-edit:hover{
    border-radius: 1rem;
    border: 2px solid #362d86;
    background-color: white;
    color: #362d86;
}

.table {
    margin-top: 5px;
}


/* Hide elements initially */
#main-content {
    display: none;
    margin-right: 17rem;
}
.mt-4{
    color: #362d86;
}

@media (min-width: 576px) {
    #upload-form {
        width: 100%;
    }
    .form-group {
        display: flex;
        justify-content: center;
    }
    .form-group > label, .form-group > input, .form-group > button {
        margin: 0 5px;
    }
}
@media (min-width: 768px) {
    #upload-form {
        width: 35rem;
    }
    .form-group {
        display: block;
        margin-left: 15rem;
        margin-top: -5rem;
    }
    #bulk-delete-btn {
        margin-left: 13rem;
        margin-top: -3.3rem;
    }
    #export-btn, #export-csv-btn {
        margin-top: -4.3rem;
    }
}
/* Modal Styles */
.edit-form {
    padding: 20px;
    margin: 0 auto;
    max-width: 400px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .edit-form {
        padding: 15px;
        max-width: 100%;
    }
}