/* Use modern font styles */
body, table, tr, td, p {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

/* Use a clean, modern color scheme */
body {
    background-color: #f8f8f8;
}

html, body {
    height: 100%;
}

h2 {
    margin-top: 0;
    color: #0072c6;
}

/* Style form elements */
input, select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 16px;
    margin-left: 5px;
    margin-top: 1px;
    margin-bottom: 1px;
}

    input:focus, select:focus {
        border-color: #0072c6;
        outline: none;
    }


/* Style table elements */
.table-screen {
    margin: auto;
    width: 100%;
    border-collapse: collapse;
}

    .table-screen th, .table-screen td {
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .table-screen th {
        background-color: #0072c6;
        color: #fff;
    }

    .table-screen tr:nth-child(even) {
        background-color: #f2f2f2;
    }

/* Style progress indicator */
div.progress {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0.7;
    background-color: #808080;
    position: fixed;
}

div.progress-text {
    opacity: unset;
    background-color: #fff;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 40px;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    margin-left: -140px;
    margin-top: -20px;
    padding-top: 12px;
    font-size: larger;
    font-weight: bold;
    z-index: 1001;
    border-radius: 5px;
    border: 1px solid #4e4c4c;
    color: #8b4513;
}


.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    /*.card:hover {
        transform: translateY(-5px);
    }*/


@media (max-width: 768px) {

    .navbar {
        justify-content: space-around;
    }
}
a {
    transition: color 0.3s;
}

    a:hover {
        color: var(--secondary-color);
    }

.main-sidebar .brand-link {
    padding: .8rem .5rem;
    text-align: center;
}

    .main-sidebar .brand-link .brand-image {
        float: none;
        max-height: 40px;
        margin: 0 auto;
    }

@media (max-width: 767.98px) {
    .main-sidebar .brand-link .brand-image {
        max-height: 30px;
    }
}

@media (min-width: 768px) {
    .main-sidebar .brand-link .brand-image {
        max-height: 40px;
    }
}
