/* Ana başlık stilleri */
.dashboard-title {
    position: relative;
    text-align: center;
    font-size: 45px;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.dashboard-title .background-text {
    position: absolute;
    top: -30px;
    left: calc(50% - 471.5px);
    opacity: 0.03;
    font-size: 60px;
}

.dashboard-title .main-text {
    color: #182958;
}

.icerik-basliklar {
    font-size:20px;
    color:#182958;
    font-weight: bold;
}
.year-filter {
    font-size:14px;
    color:#182958;
    margin-left: 1rem;

}
/* İstatistik kartları */
.stat-card {
    padding: 10px;
    max-width: 200px;
    min-width: 200px;
    text-align: center;
}

.stat-card .icon {
    text-align: center;
    color: #182958;
}

.stat-card .counter {
    color: #182958;
    font-size: 40px;
}

.stat-card .title {
    font-weight: bold;
    color: grey;
}

/* Detaylı rapor kartları */

.report-card {
    padding: 10px;
    max-width: 300px;
    min-width: 300px;
    font-size: 13px;
}

.report-card .content {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    width: 100%;
    padding: 10px;
    height: 100%;
    cursor: pointer;
    display: flex;
}

.report-card .icon-container {
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    min-width: 50px;
    min-height: 50px;
    line-height: 30px;
}

.report-card .icon {
    color: #fff;
}

.report-card .text {
    margin-left: 1rem;
    font-weight: bold;
    color: #006699;
    display: flex;
    align-items: center;
    text-align: left;
}

/* Üst menü */
.top-nav {
    background-color: #006699;
    border-bottom: solid #CCEEFF 30px;
    height: 120px;
    position: relative;
}

.top-nav .logo {
    position: absolute;
    left: calc(50% - 65px);
    bottom: -65px;
}

.top-nav .logo img {
    width: 130px;
    height: 130px;
}

/* Yükleme ekranı */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadingCenter {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Sabit form linki */
.fixed-form-link {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    border: #182958 solid 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    z-index: 999;
    transition: all 0.3s ease;
}

.fixed-form-link:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transform: translateY(-50%) scale(1.05);
}

.fixed-form-link a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #006699;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.fixed-form-link i {
    font-size: 24px;
    color: #182958;
}

.fixed-form-link span {
    display: inline-block;
    width: 200px;
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    color: #182958;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobil ekran düzenlemeleri */
@media (max-width: 768px) {
    .fixed-form-link {
        position: fixed;
        right: 10px;
        top: auto;
        bottom: 80px;
        transform: none;
        padding: 10px;
        max-width: 50px;
        color: #182958;
    }

    .fixed-form-link:hover {
        transform: scale(1.05);
    }

    .fixed-form-link span {
        display: none;
    }

    .fixed-form-link i {
        font-size: 20px;
    }

    /* Tooltip ekleyelim */
    .fixed-form-link:hover::after {
        content: attr(title);
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        margin-right: 10px;
    }
}