* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.theme-selector {
    margin-bottom: 30px;
    text-align: center;
}

select {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    margin-top: 10px;
}

.results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.results > div {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

h2 {
    margin-bottom: 15px;
    color: #444;
}

.genre-item, .rating-item, .planning-item {
    margin: 10px 0;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.genre-item:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.genre-item.active {
    background-color: #2c5282;
    color: white;
}

.genre-item.active .score {
    color: white;
}

.score {
    font-weight: bold;
    color: #2c5282;
}

.features {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.feature-category {
    margin-bottom: 15px;
}

.feature-category h3 {
    color: #444;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.feature-item {
    padding: 5px 10px;
    margin: 5px 0;
    background-color: white;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item .score {
    color: #666;
    font-weight: bold;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.features-column {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.features-column h3 {
    color: #2c5282;
    margin-bottom: 20px;
    font-size: 1.3em;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5282;
} 