/* Table Style */
.wpl-winners-table-wrap {
    margin: 20px 0;
    overflow-x: auto;
}

.wpl-winners-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wpl-winners-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: right;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

.wpl-winners-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.wpl-winners-table tr:last-child td {
    border-bottom: none;
}

.wpl-winners-table tr:hover {
    background-color: #f8f9fa;
}

/* List Style */
.wpl-winners-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin: 20px 0;
}

.wpl-winner-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.wpl-winner-item:hover {
    transform: translateY(-2px);
}

.wpl-lottery-name {
    margin: 0 0 15px 0;
    font-size: 1.2em;
    color: #2c3e50;
}

.wpl-lottery-date {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.wpl-winners {
    margin: 15px 0;
}

.wpl-winner-name {
    display: inline-block;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 2px;
    font-size: 0.9em;
}

.wpl-prize {
    color: #2ecc71;
    font-weight: bold;
    margin-top: 10px;
}

/* Empty State */
.wpl-shortcode-empty {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-style: italic;
} 