/* Maps list table styles */
table:not(.performance-table):not(.scoreboard-table):not(.weapon-stats):not(.header-stats) {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border: none;
    font-size: 18px;  /* Increased base font size */
}

table:not(.performance-table):not(.scoreboard-table):not(.weapon-stats):not(.header-stats) th,
table:not(.performance-table):not(.scoreboard-table):not(.weapon-stats):not(.header-stats) td {
    padding: 5px;
    line-height: 1.2;
    text-align: center;
    border: none;
    color: black;
    font-size: 18px;  /* Increased cell font size */
}

table:not(.performance-table):not(.scoreboard-table):not(.weapon-stats):not(.header-stats) th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    font-size: 19px;  /* Slightly larger font for headers */
}

table:not(.performance-table):not(.scoreboard-table):not(.weapon-stats):not(.header-stats) tr:nth-child(even) {
    background-color: #f9f9f9;
}

table:not(.performance-table):not(.scoreboard-table):not(.weapon-stats):not(.header-stats) tr:hover {
    background-color: #f0f0f0;
}

/* Map tooltip */
#map-tooltip {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translate(5px, -50%);
}

.tooltip-img {
    min-width: 400px;
    max-width: 400px;
    max-height: 300px;
    display: block;
}

/* Map specific styles */
.map-name {
    text-align: left !important;
    cursor: pointer;
}

.map-name a {
    color: #333;
    text-decoration: none;
}

.map-name a:hover {
    color: #8b0000;
}

.win-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 5px;
}

.weapon-icon {
    height: 24px;
    vertical-align: middle;
}

.geekscore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}