/* Makes the footer sticky */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
}

.badge-status {
    border: none;
    font-weight: 500;
    border-radius: 1rem;
    padding: 0.3rem 2rem 0.3rem 0.6rem; /* Extra right padding for arrow */
    width: auto;
    display: inline-block;
    background-color: transparent;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 150px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
}

#applicationTabel {
    width: 100%;
    margin-top: 20px;
}


.dark-mode {
    background-color: #121212;
    color: #f5f5f5;
}

.dark-mode .text-muted {
    color: #aaa !important;
}
.dark-mode .card {
    background-color: #1e1e1e;
    color: #f5f5f5;
}

.dark-mode .navbar {
    background-color: #1c1c1c;
}

body.dark-mode table,
body.dark-mode .table {
    background-color: #1f1f1f !important;
    color: #f5f5f5 !important;
}

body.dark-mode table thead,
body.dark-mode .table thead th {
    background-color: #2a2a2a !important;
    color: #f5f5f5 !important;
}

body.dark-mode table tbody tr,
body.dark-mode .table tbody tr {
    background-color: #1f1f1f !important;
    color: #f5f5f5 !important;
}

body.dark-mode table tbody tr td,
body.dark-mode .table tbody tr td {
    background-color: #1f1f1f !important;
    color: #f5f5f5 !important;
}

body.dark-mode table tbody tr:nth-child(even),
body.dark-mode .table tbody tr:nth-child(even) {
    background-color: #2a2a2a !important;
}

body.dark-mode table tbody tr:hover,
body.dark-mode .table tbody tr:hover {
    background-color: #2f2f2f !important;
}

body.dark-mode table tbody td,
body.dark-mode .table tbody td {
    border-color: #333 !important;
}



.dark-mode input,
.dark-mode select,
.dark-mode textarea {
    background-color: #2c2c2c;
    color: #f5f5f5;
    border-color: #444;
}

.dark-mode input::placeholder {
    color: #aaa;
}
.dark-mode .navbar {
    background-color: #1e1e1e !important;
    color: #f5f5f5;
}

.dark-mode .navbar .nav-link,
.dark-mode .navbar-brand {
    color: #f5f5f5 !important;
}
.dark-mode footer {
    background-color: #1e1e1e !important;
    color: #ccc;
    border-top: 1px solid #333;
}
