/* DATASETS PAGE STYLES */

/* Constrain width to match other pages */
.guide-content {
    max-width: 1000px; /* Aligns with standard guide layout */
    margin: 0 auto;
    padding: 60px 40px;
    width: 100%;
}

.search-panel {
    background: #2b1d16;
    border: 1px solid #4a3728;
    padding: 20px;
    margin-bottom: 30px;
}

#search {
    width: 100%;
    background: #0d0806;
    border: 1px solid #4a3728;
    color: #00ff00; /* Terminal Green */
    padding: 12px 15px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

#search:focus {
    border-color: #d2b48c;
}

.dataset-list-panel {
    background: #2b1d16;
    border: 1px solid #4a3728;
    overflow: hidden;
}

#list-container {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dataset-item {
    padding: 18px 25px;
    border-bottom: 1px solid #4a3728;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    cursor: pointer;
}

.dataset-item:last-child {
    border-bottom: none;
}

.dataset-item:hover {
    background: #3e2a1d;
}

.dataset-name {
    color: #f5deb3; /* Wheat color for visibility */
    font-weight: 500;
    font-size: 1rem;
}

.dataset-meta {
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: #8b7355;
    background: #1a0f0a;
    padding: 4px 10px;
    border-radius: 4px;
}