/* LASSR Tournament Manager - Frontend Styles */

/* Supplemental styles for theme integration */

.lassr-standings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.lassr-standings-table th,
.lassr-standings-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.lassr-standings-table thead {
    background: #2c2c2c;
    color: white;
}

.lassr-standings-table tbody tr:hover {
    background: #f5f5f5;
}

.lassr-match-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.lassr-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.lassr-team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 10px;
}

.lassr-banner-announcement {
    background: #ff4500;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.lassr-banner-announcement a {
    color: white;
    text-decoration: underline;
}

/* Language switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-link {
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.lang-link.active {
    background: #ff4500;
    color: white;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
