/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress Child Theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Add your custom styles here */

/* Museum Table Styles */
.museum-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: 8px;
}

.museum-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
    min-width: 800px;
    /* Ensures columns have space on mobile */
}

.museum-table th,
.museum-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.museum-table th {
    background-color: #333;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

.museum-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.museum-table tr:hover {
    background-color: #f1f1f1;
}

.museum-table a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.museum-table a:hover {
    text-decoration: underline;
}

/* Museum Archive Item Details */
.museum-archive-item-details {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

.museum-archive-meta {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.museum-archive-meta span {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.85em;
}

.museum-archive-meta strong {
    color: #333;
}

.museum-archive-description {
    font-style: italic;
    border-left: 2px solid #ddd;
    padding-left: 10px;
    margin-top: 5px;
}