.vasil-table-container {
    max-width: 1100px;
    margin: 0 auto;
    direction: rtl;
    padding: 0;
}

.vasil-table-title {
    text-align: right;
    color: #ff6347;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-right: 20px;
}

.vasil-table-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.vasil-custom-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.vasil-custom-table thead {
    background: linear-gradient(135deg, #ff6347 0%, #ff7f50 100%);
}

.vasil-custom-table thead tr th {
    padding: 30px 20px;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.vasil-custom-table thead tr th:first-child {
    border-right: none;
}

.vasil-custom-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.3s ease;
}

.vasil-custom-table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.vasil-custom-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.vasil-custom-table tbody tr:hover {
    background-color: #fff5f0;
}

.vasil-custom-table tbody tr:last-child {
    border-bottom: none;
}

.vasil-custom-table tbody tr:last-child td {
    padding-bottom: 35px;
}

.vasil-custom-table tbody tr td {
    padding: 35px 20px;
    text-align: center;
    color: #999999;
    font-size: 20px;
    font-weight: 400;
    border-right: 2px solid #e8e8e8;
}

.vasil-custom-table tbody tr td:first-child {
    border-right: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .vasil-table-title {
        font-size: 24px;
        margin-bottom: 25px;
        padding-right: 10px;
    }

    .vasil-table-wrapper {
        border-radius: 15px;
        overflow-x: auto;
    }

    .vasil-custom-table {
        min-width: 600px;
    }

    .vasil-custom-table thead tr th {
        padding: 20px 12px;
        font-size: 16px;
    }

    .vasil-custom-table tbody tr td {
        padding: 25px 12px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .vasil-table-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .vasil-custom-table thead tr th {
        padding: 15px 8px;
        font-size: 14px;
    }

    .vasil-custom-table tbody tr td {
        padding: 20px 8px;
        font-size: 13px;
    }
}