.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    font-size: 15px;
}

.custom-table th {
    text-align: left;
    padding: 14px 16px;
    background: #f5f7fa;
    font-weight: 600;
    color: #2c2c2c;
    border-bottom: 1px solid #e5e7eb;
}

.custom-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.custom-table tr:last-child td {
    border-bottom: none;
}

/* Hover efekti */
.custom-table tr:hover {
    background: #fafafa;
}

/* Kart görünümü */
.table-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}