@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'), url('fonts/Roboto-Regular.woff') format('woff'), url('fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2'), url('fonts/Roboto-Bold.woff') format('woff'), url('fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
body {
    font-family: 'Roboto', sans-serif;
}

.info-box {
    display: flex;
    align-items: center;
    min-height: 80px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    border-radius: .25rem;
    margin-bottom: 1rem;
   
}

    .info-box .info-box-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        font-size: 1.875rem;
        border-radius: .25rem;
        color: #fff;
    }

    .info-box .info-box-content {
        flex: 1;
        padding: 5px 10px;
        overflow: hidden;

    }

    .info-box .info-box-text {
        display: block;
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
       color:black;
    }

    .info-box .info-box-number {
        display: block;
        font-weight: bold;
        font-size: 1.25rem;
        color: black;
    }

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.shadow-none {
    box-shadow: none !important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.small-box {
    position: relative;
    display: block;
    background: #17a2b8;
    color: #fff;
    border-radius: .25rem;
  /*  padding: 20px;*/
    overflow: hidden;
}

    .small-box > .inner {
        padding: 10px;
    }

    .small-box h3 {
        font-size: 2.2rem;
        font-weight: bold;
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

    .small-box p {
        font-size: 1.1rem;
        margin: 0;
    }

    .small-box .icon {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 4rem;
        color: rgba(0, 0, 0, 0.15);
    }

    .small-box .small-box-footer {
        display: block;
        background: rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 10px 0;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }

        .small-box .small-box-footer:hover {
            background: rgba(0, 0, 0, 0.2);
        }

/* Background Colors */
.bg-info {
    background-color: #17a2b8 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: .25rem;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,.125);
}

.card-header {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0,0,0,.125);
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    margin: 0;
    font-size: 1.25rem;
}

.card-tools {
    display: flex;
    align-items: center;
}

    .card-tools .btn-tool {
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        color: rgba(0, 0, 0, 0.5);
    }

.card-body {
    padding: 15px;
    font-size: 1rem;
    color: #212529;
}

/* Card Variants */
.card-primary {
    border-left: 4px solid #007bff;
}

.card-success {
    border-left: 4px solid #28a745;
}

.card-warning {
    border-left: 4px solid #ffc107;
}

.card-danger {
    border-left: 4px solid #dc3545;
}

/* Card Header Background Colors */
.card-primary .card-header {
    background-color: #007bff;
    color: #fff;
}

.card-success .card-header {
    background-color: #28a745;
    color: #fff;
}

.card-warning .card-header {
    background-color: #ffc107;
    color: #fff;
}

.card-danger .card-header {
    background-color: #dc3545;
    color: #fff;
}

/* Footer */
.card-footer {
    padding: 15px;
    background: #f8f9fa;
}

    /* Navigation List */
    .card-footer .nav {
        margin-bottom: 0;
    }

    .card-footer .nav-item {
        padding: 10px 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

        .card-footer .nav-item:last-child {
            border-bottom: none;
        }

    .card-footer .badge {
        font-size: 0.875rem;
        font-weight: bold;
    }

/* Description Block */
.description-block {
    text-align: center;
    padding: 10px 0;
}

.description-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.description-text {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Background Colors */
.bg-primary {
    background-color: #007bff !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

/* Custom Background */
.widget-user-header.text-white {
    color: #fff;
    background-size: cover !important;
    background-position: center center !important;
}
/* General Info Box Styles */
/*.info-box {
    display: flex;
    align-items: center;
    min-height: 80px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    border-radius: .25rem;
    margin-bottom: 1rem;*/
    /*color: #fff;*/ /* Ensure text is visible on colored backgrounds */
/*}*/

/* Info Box Icon */
/*.info-box .info-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 1.875rem;
    border-radius: .25rem;
    background: rgba(0, 0, 0, 0.1);*/ /* Slightly darkened background for contrast */
/*}*/

/* Info Box Content */
/*.info-box .info-box-content {
    flex: 1;
    padding: 5px 10px;
    overflow: hidden;
}

.info-box .info-box-text {
    display: block;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-box .info-box-number {
    display: block;
    font-weight: bold;
    font-size: 1.25rem;
}*/

/* Background Colors */
/*.bg-warning {
    background-color: #ffc107 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}*/


/* General Card Styles */
/*.card-widget {
    border-radius: .25rem;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
}*/

/* Widget User Header */
/*.widget-user-header {
    padding: 20px;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #fff;
}*/

/* User Image */
/*.widget-user-image {
    position: absolute;
    top: 10px;
    left: 85%;
    transform: translateX(-50%);
}

    .widget-user-image img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.8);
    }*/

/* Widget User-2 Image */
/*.widget-user-2 .widget-user-image {
    position: absolute;
    top: 15px;
    left: 15px;
}

    .widget-user-2 .widget-user-image img {
        width: 65px;
        height: 65px;
        border-radius: 50%;
    }*/

/* User Titles */
/*.widget-user-username {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
}

.widget-user-desc {
    font-size: 1rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
}*/

