/**
 * Plain Table Template Styles
 * Simple, clean table design with basic styling
 */


.datameister-casino-table.template-plain {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.datameister-casino-table.template-plain .datameister-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.datameister-casino-table.template-plain .datameister-table th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #dee2e6;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.datameister-casino-table.template-plain .datameister-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.datameister-casino-table.template-plain .datameister-table tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.datameister-casino-table.template-plain .datameister-table tr:last-child td {
    border-bottom: none;
}

/* Logo styling */
.datameister-casino-table.template-plain .field-logo {
    padding: 0 !important;
}

.datameister-casino-table.template-plain .field-logo img {
    max-width: 100%;
    max-height: 50px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    display: block;
}

/* Action button styling */
.datameister-casino-table.template-plain .field-action a {
    display: inline-block;
    background-color: #007cba;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    transition: background-color 0.2s ease;
}

.datameister-casino-table.template-plain .field-action a:hover {
    background-color: #005a87;
    text-decoration: none;
}

/* Score styling */
.datameister-casino-table.template-plain .field-score {
    font-weight: 600;
    color: #2c5aa0;
}

/* Deposit/currency styling */
.datameister-casino-table.template-plain .field-deposit,
.datameister-casino-table.template-plain .field-withdrawal,
.datameister-casino-table.template-plain .field-maxpayout,
.datameister-casino-table.template-plain .field-welcome_bonus {
    font-weight: 500;
    color: #28a745;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .datameister-casino-table.template-plain .datameister-table {
        font-size: 12px;
    }

    .datameister-casino-table.template-plain .datameister-table th,
    .datameister-casino-table.template-plain .datameister-table td {
        padding: 8px 10px;
    }

    .datameister-casino-table.template-plain .field-logo img {
        max-height: 40px;
    }

    .datameister-casino-table.template-plain .field-action a {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .datameister-casino-table.template-plain {
        margin: 10px -15px;
        overflow-x: auto;
        width: calc(100% + 30px);
    }

    .datameister-casino-table.template-plain .datameister-table {
        min-width: 600px;
        font-size: 11px;
    }

    .datameister-casino-table.template-plain .datameister-table th,
    .datameister-casino-table.template-plain .datameister-table td {
        padding: 6px 8px;
    }

    .datameister-casino-table.template-plain .field-logo img {
        max-height: 30px;
    }
}

/* Responsive Play button padding */
@media (min-width: 769px) {
    .datameister-casino-table.template-plain .play-button-responsive {
        width: calc(100% - 36px) !important;
        margin: 0 18px !important;
    }
}