body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f7f7;
    color: #333;
}

.tab-menu {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-weight: bold;
    font-size: 14px;
}

.tab-menu a {
    padding: 10px 10px;
    text-decoration: none;
    color: #666;
    border-bottom: 2px solid transparent;
}

.tab-menu a:hover {
    color: #000;
}

.tab-menu a.active {
    color: #000;
    border-bottom: 2px solid #000;
}

/* Filtra sadaļa */
.filter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.filter-form {
    width: 100%;
}

.filter-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.filter-form select, 
.filter-form input {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.filter-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.filter-btn:hover {
    background-color: #222; 
}

/* Rezultātu sadaļa */
.results-container {
    width: 80%;
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
}

#movie-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.movie-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.no-results {
    color: red;
    display: none;
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
}
