﻿/*Logo*/
.small-logo {
    max-width: 95px;
    max-height: 80px;
    margin-top: 10px;
}

.normal-logo {
    max-width: 400px;
}

/*Buttons*/
.mud-button-label {
    padding: 2px 15px 2px 15px;
}

/*Tables*/
.mud-table-head {
    background-color: var(--mud-palette-primary);
}

.mud-table-root .mud-table-head .mud-table-cell {
    color: #FFF;
}

.mud-table-sort-label:hover {
    color: #FFF;
    text-decoration: underline;
}

.mud-table-sticky-header * .mud-table-root .mud-table-head * .mud-table-cell {
    background-color: var(--mud-palette-primary);
}

/*Text inputs*/
.mud-shrink ~ label.mud-input-label.mud-input-label-inputcontrol {
    color: var(--mud-palette-primary) !important;
    font-weight: bold;
}

.transparent-background {
    background: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-size: cover;
}

.transparent {
    background-color: transparent;
}

.mt-20 {
    margin-top: 100px;
}

.my-20 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.py-20 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-20 {
    padding-top: 100px;
}

.pb-20 {
    padding-bottom: 100px;
}

.pb-150 {
    padding-bottom: 150px;
}

.no-border-radius {
    border-radius: 0px;
}

.footer {
    position: fixed;
    bottom: 0;
    text-align: center;
}
.main-content {
    padding-bottom: 100px; 
    min-height: calc(100vh - 100px);
}

.color-primary {
    color: var(--mud-palette-primary);
}

.color-secondary {
    color: var(--mud-palette-secondary);
}

.mud-progress-linear {
    height: 10px !important;
}

.text-bold {
    font-weight: bold !important;
}

.month-check {
    padding: 0px;
    color: green;
}

    .month-check > span > svg {
        font-size: xxx-large;
    }

.month-cancel {
    padding: 0px;
    color: red;
}

    .month-cancel > span > svg {
        font-size: xxx-large;
    }

.justify-right {
    justify-content: right;
}

.font-large {
    font-size: large;
}

.font-x-large {
    font-size: x-large;
}

.font-xx-large {
    font-size: xx-large;
}

.font-xxx-large {
    font-size: xxx-large;
}

.color-white {
    color: #FFFFFF;
}

.no-padding {
    padding: 0px !important;
}

.background-primary {
    background-color: var(--mud-palette-primary) !important;
}

.text-underline {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.text-success {
    color: green;
    font-weight: bold;
}

.mobile-card {
    @media (max-width: 768px) {
        width: 100%; /* Adjust as needed */
    }
}