/* Özel Footer Stilleri */
.custom-tabela-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    margin-top: 1px; /* Üstten 7px boşluk eklendi */
    font-family: inherit; /* Astra'nın fontunu devral */
}

.custom-tabela-footer .ast-container {
    max-width: 1200px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    flex: 1;
    min-width: 300px;
}

.copyright-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #aaaaaa;
}

.trademark-warning {
    font-size: 13px;
    line-height: 1.6;
    color: #888888;
    font-style: italic;
    border-left: 2px solid #cc0000;
    padding-left: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    background-color: #333333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        order: 2;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-social {
        order: 3;
        margin-top: 20px;
    }
    
    .trademark-warning {
        border-left: none;
        padding-left: 0;
        padding-top: 15px;
        border-top: 1px solid #444444;
    }
}