﻿@font-face {
    font-family: 'NunitoSans';
    src: url('../../fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

body {
    font-family: 'NunitoSans', sans-serif;
}

.btn:focus,
.btn:active,
.btn:focus-visible,
.btn:visited,
a.btn:focus,
a.btn:active,
.btn-sm:focus,
.btn-sm:active {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: none;
    outline: none;
    box-shadow: none;
}

#search-icon svg {
    width: 20px;
    height: 20px;
    fill: #BDB7B7;
}

.title-notification {
    color: white;
    font-size: 2.125rem;
    font-family: 'NunitoSans', sans-serif;
    font-weight: 700;
    line-height: 2.4375rem;
    word-wrap: break-word
}

.header {
    background-color: #1D4370;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%221194%22 height=%22190%22 viewBox=%220 0 1194 190%22 fill=%22none%22%3E%3Cpath d=%22M1096.57 19.2199L-39.0001 -7.39258L-28.0001 182.344L1193.5 189.244L1096.57 19.2199Z%22 fill=%22%23043065%22 /%3E%3C/svg%3E');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 90%;
    height: 200px;
    width: 82%;
}

.first-section-notification {
    display: flex;
    justify-content: center;
}

.first-step {
    color: white;
    font-size: 0.9375rem;
    font-family: 'NunitoSans', sans-serif;
    font-weight: 400;
    text-decoration: underline;
    line-height: 1.5rem;
    word-wrap: break-word
}

.second-step {
    color: white;
    font-size: 0.9375rem;
    font-family: 'NunitoSans', sans-serif;
    font-weight: 700;
    text-decoration: underline;
    line-height: 2.4375rem;
    word-wrap: break-word
}

.stats-container {
    font-family: 'NunitoSans', sans-serif;
    max-width: 85%;
    margin: 0 auto;
    padding: 20px;
}

/* Stats Cards */
.stats-cards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #043065;
}

.stat-label {
    font-size: 16px;
    font-family: 'NunitoSans', sans-serif;
    font-weight: 400;
    line-height: 16px;
    word-wrap: break-word
}

/* Month Selector */
.month-selector {
    display: flex;
    align-items: center;
    gap: 13rem;
    font-family: 'NunitoSans', sans-serif;
    padding: 1rem 0;
}

.month-label {
    font-size: 24px;
    font-weight: 700;
    line-height: 39px;
    word-wrap: break-word
}

.month-select {
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 0.25rem 0;
    font-size: 16px;
    min-width: 20%;
    color: #0D2436;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%230D2436' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    background-size: 12px;
}

/* Services Sections */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    flex-direction: column;
}

.service-section {
    flex: 1;
    min-width: 350px;
    background: white;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-section-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 20px;
}

.service-name {
    font-weight: bold;
    color: #043065;
}

.service-description {
    font-size: 14px;
    color: #555;
}

/* Data Section */
.data-section {
    background: #F9F9F9;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.data-section-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.data-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex-direction: column;
}

.data-column {
    flex: 1;
    min-width: 250px;
}

.data-category {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.data-items {
    margin-left: 20px;
}

.data-item {
    margin-bottom: 10px;
}

.data-number {
    font-size: 24px;
    font-weight: bold;
    color: #043065;
}

.data-description {
    font-size: 14px;
    color: #555;
    margin-left: 10px;
}

.cards-statistics-div {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767.98px) {
    .cards-statistics-div {
        flex-direction: column;
        display: flex;
    }

        .cards-statistics-div > .services-container,
        .cards-statistics-div > .data-section {
            width: 100% !important;
            max-width: 100%;
        }
}
