/**
 * Estilos del área pública del plugin Bet Tracker
 *
 * @package    Bet_Tracker
 * @subpackage Bet_Tracker/public/css
 */

.bt-public-container {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bt-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bt-stat-card {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #2271b1;
    border-radius: 3px;
    text-align: center;
}

.bt-stat-card h3 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
}

.bt-stat-card .bt-stat-value {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.bt-apuestas-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bt-apuestas-table th {
    text-align: left;
    padding: 10px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ccc;
}

.bt-apuestas-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.bt-apuestas-table tr:hover {
    background-color: #f9f9f9;
}

.bt-ganada {
    color: #46b450;
    font-weight: bold;
}

.bt-perdida {
    color: #dc3232;
    font-weight: bold;
}

.bt-anulada {
    color: #f0c33c;
    font-weight: bold;
}

.bt-filter-bar {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.bt-filter-bar form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bt-filter-bar .bt-form-group {
    flex: 1;
    min-width: 150px;
}

.bt-filter-bar label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.bt-filter-bar select,
.bt-filter-bar input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
