/* Wall of Records - Styles */

footer {
    width: 100%;
    padding-top: 3rem; 
    height: 2.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .8rem;
    font-weight: 300;
}

h1 {
    font-family: 'Cardo', serif;
    font-weight: 400;
    font-size: 4rem;
    text-align: center;
    color: #4d4d4d;
    margin: 0 auto 5rem;
}

h01::first-letter {
    letter-spacing: -8px;
}

h1 span {
    font-style: italic;
    padding-right: 10px;
}

h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    color: #333333;
    letter-spacing: 10px;
    margin: 3rem 0 1rem;
}

.main-wrapper {
    padding: 1rem;
}

table {
    border: 1px solid #000000;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0px;
    table-layout: fixed;
    min-width: 100%;
}

table th {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 400; 
    letter-spacing: 2px;
    text-align: left;
    padding: 12px 8px;
    border: none;
    background:#ffffff;
    color:#9a825c;
}

table td {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300; 
    padding: 12px 8px;
    border: none;
}

table tr {
    height: 4rem;
}

table.dataTable.stripe tbody tr.odd, 
table.dataTable.display tbody tr.odd {
    background-color: #faf9f7;
}

table.dataTable.stripe tbody tr.odd, 
table.dataTable.display tbody tr.even {
    background-color: #FFFFFF;
}

#table_id {
    border: none;
    width: 100%;
}

.loading {
    text-align: center;
    padding: 2rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: #9a825c;
}

.error {
    text-align: center;
    padding: 2rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: #d9534f;
}

.last-updated {
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.75rem;
    color: #999;
    margin-top: 1rem;
}

/* Mobile Optimization - Hide columns 2, 3, and 6 on small screens */
@media screen and (max-width: 768px) {
    /* Hide Date (column 2) */
    table th:nth-child(2),
    table td:nth-child(2) {
        display: none;
    }
    
    /* Hide Location (column 3) */
    table th:nth-child(3),
    table td:nth-child(3) {
        display: none;
    }
    
    /* Hide Place (column 6) */
    table th:nth-child(6),
    table td:nth-child(6) {
        display: none;
    }
    
    /* Adjust remaining columns for mobile */
    table th:nth-child(1),
    table td:nth-child(1) {
        width: 50%;
    }
    
    table th:nth-child(4),
    table td:nth-child(4) {
        width: 25%;
    }
    
    table th:nth-child(5),
    table td:nth-child(5) {
        width: 25%;
    }
    
    /* Adjust header size for mobile */
    h1 {
        font-size: 2.5rem;
        margin: 0 auto 2rem;
    }
    
    h3 {
        font-size: 0.8rem;
        letter-spacing: 5px;
        margin: 2rem 0 0.5rem;
    }
    
    /* Adjust filter for mobile */
    #filterContainer label {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    /* Make table text smaller on mobile */
    table th {
        font-size: 0.7rem;
        padding: 8px 4px;
    }
    
    table td {
        font-size: 0.85rem;
        padding: 8px 4px;
    }
}