.management-table-container,
.mutevelli-table-container {
    margin-top: 2rem;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.management-table,
.mutevelli-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 1.125rem;
    border-radius: 8px;
    overflow: hidden;
}

.management-table thead,
.mutevelli-table thead {
    background: #374151;
    color: white;
}

.management-table th,
.management-table td,
.mutevelli-table th,
.mutevelli-table td {
    padding: 0.6rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.management-table th,
.mutevelli-table th {
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.management-table td,
.mutevelli-table td {
    color: #333;
    line-height: 1.4;
}

.management-table tbody tr:hover,
.mutevelli-table tbody tr:hover {
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.management-table tbody tr:last-child td,
.mutevelli-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mütevelli tablosu için özel stil */
.mutevelli-table th:first-child {
    width: 80px;
    text-align: center;
    font-weight: 600;
    color: white;
}

.mutevelli-table td:first-child {
    width: 80px;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .management-table-container,
    .mutevelli-table-container {
        margin-top: 1.5rem;
        box-shadow: none;
        border: 1px solid #e9ecef;
    }

    .management-table,
    .mutevelli-table {
        font-size: 0.9rem;
    }

    .management-table th,
    .management-table td,
    .mutevelli-table th,
    .mutevelli-table td {
        padding: 0.5rem 0.8rem;
    }

    .mutevelli-table th:first-child,
    .mutevelli-table td:first-child {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .management-table,
    .mutevelli-table {
        font-size: 0.8rem;
    }

    .management-table th,
    .management-table td,
    .mutevelli-table th,
    .mutevelli-table td {
        padding: 0.4rem 0.6rem;
    }

    .mutevelli-table th:first-child,
    .mutevelli-table td:first-child {
        width: 50px;
    }
}
