
.blue-100{
    color: #416cc8;
}

.blue-200{
    color: #315298;
}

.grey-100{
    color: #757575;
}

.green-100{
    color: #38bc87;
}

.green-200{
    color: #27835e;
}

.green-300{
    color: #174a36;
}

.red-100{
    color: #bc3857;
}

.red-200{
    color: #83273c;
}

.red-300{
    color: #531826;
}


/* Fonts */

.thin-100{
    font-weight: 100;
}

.thin-200{
    font-weight: 200;
}

.thin-200{
    font-weight: 300;
}

.size-xs{
    font-size: 9px;
}

.size-s{
    font-size: 11px;
}

.size-m{
    font-size: 13px;
}

.no-style-link {
    color: inherit !important;
    text-decoration: none !important;
}

.no-style-link:hover,
.no-style-link:focus,
.no-style-link:visited,
.no-style-link:active {
    color: inherit !important;
    text-decoration: none !important;
}


/* Budget Table */

#budgetTableDiv table {
    width: 100%;
    table-layout: fixed;
}


#budgetTableDiv table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

#budgetTableDiv th,
#budgetTableDiv td {
    padding: 12px 10px;
    border: 1px solid #ddd;
    vertical-align: middle;
    text-align: left;
}

#budgetTableDiv thead {
    background-color: #f0f4f8;
    font-weight: bold;
}

#budgetTableDiv tbody tr:nth-child(even) {
    background-color: #fafafa;
}

#budgetTableDiv tbody tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.2s ease-in-out;
}

#budgetTableDiv button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

#budgetTableDiv th:nth-child(1),
#budgetTableDiv td:nth-child(1) {
    width: 30%;
}

#budgetTableDiv th:nth-child(2),
#budgetTableDiv td:nth-child(2) {
    width: 15%;
}

#budgetTableDiv th:nth-child(3),
#budgetTableDiv td:nth-child(3) {
    width: 10%;
}

#budgetTableDiv th:nth-child(4),
#budgetTableDiv td:nth-child(4),
#budgetTableDiv th:nth-child(5),
#budgetTableDiv td:nth-child(5) {
    width: 12%;
}

#budgetTableDiv th:nth-child(6),
#budgetTableDiv td:nth-child(6),
#budgetTableDiv th:nth-child(7),
#budgetTableDiv td:nth-child(7) {
    width: 10%;
}


/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sm-fonts{
    font-size: 11px;
}