/* Slot Mania - Frontend Styles */

.slot-mania-user-slots {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.slot-mania-user-slots h3 {
    color: #1d2327;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
}

.slot-mania-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.slot-mania-table,
.slot-mania-table td,
.slot-mania-table th {
    border: 1px solid #dcdcdc;
    padding: 10px;
    text-align: left;
}

.slot-mania-table thead th {
    background-color: #f6f7f7;
    color: #1d2327;
    font-weight: 600;
}

.slot-mania-table tbody tr:hover {
    background-color: #f0f6fc;
}

.slot-mania-table td {
    vertical-align: middle;
}

.slot-mania-table small {
    color: #646970;
    font-size: 12px;
}

.slot-mania-table .badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.slot-mania-table .badge-trial {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.slot-mania-table .badge-full {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.slot-mania-table a {
    color: #2271b1;
    text-decoration: none;
}

.slot-mania-table a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .slot-mania-user-slots {
        padding: 15px;
    }

    .slot-mania-table {
        font-size: 12px;
    }

    .slot-mania-table td,
    .slot-mania-table th {
        padding: 8px;
    }
}