/* Raporlar Sayfası Stilleri */

.rapor-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.rapor-item {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px 25px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: 'Poppins', sans-serif;
}

.rapor-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(157, 34, 53, 0.12);
    border-color: #9D2235;
    background: #fff;
}

.rapor-icon {
    font-size: 2rem;
    color: #d9534f;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.rapor-item:hover .rapor-icon {
    transform: scale(1.15);
}

.rapor-text {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
}

.rapor-action {
    font-size: 1.3rem;
    color: #9D2235;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.rapor-item:hover .rapor-action {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rapor-item {
        padding: 15px 18px;
    }

    .rapor-icon {
        font-size: 1.5rem;
        margin-right: 15px;
    }

    .rapor-text {
        font-size: 0.95rem;
    }

    .rapor-action {
        font-size: 1.1rem;
    }
}
