.bsc-clubs-wrapper {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bsc-search-box {
    margin-bottom: 20px;
}

.bsc-search-box input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s;
    direction: rtl;
}

.bsc-search-box input:focus {
    outline: none;
    border-color: #4CAF50;
}

.bsc-table-container {
    overflow-x: auto;
}

.bsc-clubs-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
    text-align: right;
}

.bsc-clubs-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bsc-clubs-table th,
.bsc-clubs-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #e0e0e0;
}

.bsc-clubs-table th {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.bsc-clubs-table tbody tr {
    transition: background-color 0.3s, transform 0.2s;
}

.bsc-clubs-table tbody tr:hover {
    background-color: #f5f5f5;
    transform: translateX(-2px);
}

.bsc-rank {
    width: 60px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #667eea;
}

.bsc-logo {
    width: 80px;
    text-align: center;
}

.bsc-logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #667eea;
}

.bsc-no-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    font-size: 30px;
    margin: 0 auto;
}

.bsc-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.bsc-address,
.bsc-phone {
    color: #666;
    font-size: 14px;
}

.bsc-stars-display {
    font-size: 16px;
    color: #ff9800;
}

.bsc-rating-count {
    font-size: 12px;
    color: #999;
    margin-right: 5px;
}

.bsc-no-rating {
    color: #999;
    font-size: 14px;
}

.bsc-final-score {
    font-size: 18px;
    color: #4CAF50;
    text-align: center;
}

.bsc-rating-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

.bsc-star {
    color: #ddd;
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
}

.bsc-star:hover,
.bsc-star.hover {
    color: #ff9800;
    transform: scale(1.2);
}

.bsc-star.selected {
    color: #ff9800;
}

.bsc-user-rated {
    color: #4CAF50;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    background: #e8f5e9;
    border-radius: 4px;
}

.bsc-no-clubs {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .bsc-clubs-table th,
    .bsc-clubs-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .bsc-logo img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .bsc-clubs-wrapper {
        padding: 10px;
    }
    
    .bsc-clubs-table {
        font-size: 12px;
    }
    
    .bsc-clubs-table th,
    .bsc-clubs-table td {
        padding: 8px 5px;
    }
    
    .bsc-logo img {
        width: 40px;
        height: 40px;
    }
    
    .bsc-address,
    .bsc-phone {
        display: none;
    }
    
    .bsc-rating-stars {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bsc-admin-rating {
        display: none;
    }
    
    .bsc-clubs-table th,
    .bsc-clubs-table td {
        padding: 6px 3px;
    }
}
