/* Dashboard Colors and Gradients */
body {
    /*background: linear-gradient(135deg, #f3f4f7, #ffffff);*/
    background-color: blue;
}

.card-header.bg-gradient-primary {
    background: linear-gradient(135deg, #4a90e2, #007bff);
    border-radius: 10px 10px 0 0;
}

.card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

table {
    border-collapse: collapse;
}

/* Table Styling */
.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

th, td {
    border: 1px solid black;
}

.table-primary {
    background-color: #007bff;
    color: white;
}

/* Status Badges */
.badge {
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 12px;
}

/* Buttons */
.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #007bff;
}

.btn-lg {
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 1.2rem;
}

#CourtsDocumentProcessingDownloadBtn {
    background-color: #d2ddfc;
    box-shadow: 0px 0px 2px black;
}

    #CourtsDocumentProcessingDownloadBtn:hover {
        background-color: aliceblue;
        border-bottom: 2px solid #788197;
        box-shadow: 0px 0px 2px blue;
    }

/* The background overlay */
/*.modal-overlay {
    display: none;*/ /* hidden by default */
    /*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1021;
    justify-content: center;
    align-items: center;
}*/

/* The modal box */
/*.modal {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;    
    width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
    display: block;    
    position: relative;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;*/ /* centers horizontally */
    /*align-items: flex-start;*/ /* stays near top, change to center if you want vertical center */
    /*padding-top: 5%;*/ /* optional spacing from top */
    /*z-index: 1021;
}*/

/*.modal {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}*/


/*.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h2 {
        margin: 0;
        font-size: 1.2rem;
    }

.close-btn {
    cursor: pointer;
    font-size: 1.5rem;
    border: none;
    background: none;
}*/

@keyframes fadeIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

td {
    vertical-align: middle;
}

/*footer{
    max-height: 5%;
    position: relative;
}*/
