/* Dashboard Colors and Gradients */
body {
    background: linear-gradient(135deg, #f3f4f7, #ffffff);
}

.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;
}

#defendantDocumentDownloadBtn {
    background-color: #d2ddfc;

    box-shadow: 0px 0px 2px black;
}

#defendantDocumentDownloadBtn:hover{
    background-color: aliceblue;
    border-bottom: 2px solid #788197;
    box-shadow: 0px 0px 2px blue;
}

/*footer{
    max-height: 5%;
    position: relative;
}*/
