/* Główna zawartość */
main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.clubs-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000000;
}

.red-line {
    width: 50px;
    height: 2px;
    background-color: #ff0000;
    margin-bottom: 30px;
}

/* Tabela klubów */
.clubs-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: flex;
    background-color: #f5f5f5;
    font-weight: bold;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.table-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background-color: #f9f9f9;
}

/* Komórki nagłówka */
.header-logo, .cell-logo {
    width: 10%;
    text-align: center;
}

.header-name, .cell-name {
    width: 25%;
    padding-left: 10px;
}

.header-short, .cell-short {
    width: 8%;
    text-align: center;
}

.header-members, .cell-members {
    width: 10%;
    text-align: center;
}

.header-leader, .cell-leader {
    width: 20%;
    padding-left: 10px;
}

.header-website, .cell-website {
    width: 15%;
    text-align: center;
}

.header-views, .cell-views {
    width: 12%;
    text-align: center;
}

/* Style komórek */
.cell-logo img {
    max-height: 50px;
    max-width: 80%;
}

.cell-name strong {
    font-size: 16px;
}

.cell-website a {
    color: #5865F2;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.cell-website a:hover {
    color: #3d48a8;
    text-decoration: underline;
}

/* Kolory poglądów */
.cell-views.left {
    color: #ff0000;
    font-weight: medium;
}

.cell-views.center {
    color: #0080ff;
    font-weight: medium;
}

.cell-views.right {
    color: #18691c;
    font-weight: medium;
}