.label-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 4px;
}

.mailbox-list-group .list-group-item.unread {
    background-color: #f8f9fa;
}
.mailbox-list-group .list-group-item {
    background-color: #fff;
}


.notification-labels {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.notification-label {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 12px;
}

#modal-label-list .list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

#modal-label-list .label-badge {
    flex: 1;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    text-align: center;
    color: white;
    font-weight: bold;
}

#modal-label-list .list-group-item .btn {
    flex-shrink: 0;
}

.badge.rounded-pill {
    padding: 0.5em 1em;
    margin: 0.2em;
    font-size: 0.9em;
    display: inline-block;
}

.chart-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.balance-overview {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.activity-log {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.total-balance-header {
    padding: 10px!important;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

.total-balance-text {
    margin-left: 15px;
    display: block;
}

.balance-amount {
    text-align: right;
    /*font-family: monospace, sans-serif;*/ /* Zorgt voor gelijke breedte van cijfers */
    min-width: 120px; /* Zorgt ervoor dat alle bedragen dezelfde breedte hebben */
    display: block; /* Zorgt ervoor dat bedragen correct uitgelijnd blijven, aangepast van inline-block; */
}

#transaction-log-content .balance-amount {
    display: inline-block; /* Zorgt ervoor dat bedragen correct uitgelijnd blijven */
}

#loans-forecast-table .balance-amount,
#transaction-details-content .balance-amount {
    display: inline-block; /* Zorgt ervoor dat bedragen correct uitgelijnd blijven */
}


table tr.novaris-table-head th {
    background-color: #007bff !important;
    color: white !important;
}

/***** SWITCH *****/
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #007bff;
}
input:checked + .slider:before {
    transform: translateX(20px);
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.balance-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.balance-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Titel blijft boven, grafiek gaat naar onder */
    flex-grow: 1;
}

.balance-card canvas {
    align-self: flex-start; /* Zorgt ervoor dat de grafiek links blijft staan */
}