body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 220px;
    background: #f5f5f5;
    border-right: 1px solid #ccc;
    padding: 20px;
}

.sidebar h3 {
    margin-top: 0;
}

.sidebar a {
    display: block;
    padding: 8px;
    margin-bottom: 4px;
    text-decoration: none;
    color: #0066cc;
    border-radius: 4px;
}

.sidebar a:hover {
    background: #e6e6e6;
}

.content {
    flex: 1;
    padding: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

h1 {
    margin-top: 0;
}

#search {
    width: 400px;
    max-width: 100%;
    padding: 8px;
    margin-bottom: 15px;
}

.table-container {
    overflow: auto;
    max-height: 70vh;
    border: 1px solid #ccc;
}

table {
    border-collapse: collapse;
    white-space: nowrap;
    width: 100%;
}

th {
    background: #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1;
}

th, td {
    border: 1px solid #ccc;
    padding: 6px;
    text-align: left;
}

tr:nth-child(even) {
    background: #fafafa;
}

.purchase-link a {
    display: inline-block;
    background: #e53238;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
}

iframe {
    width: 100%;
    min-height: 1000px;
    border: 1px solid #ccc;
}
