/* === PAMATSTILS === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
}

/* === HEADER === */
header {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background: #555;
    color: white;
    border-radius: 4px;
    transition: background 0.3s;
}

nav button:hover {
    background: #777;
}

/* === SKATI (VIEW) === */
.view {
    padding: 20px;
}

.hidden {
    display: none;
}

/* === HOME FILMAS (CARD GRID) === */
#movieCards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* === ATTĒLI CARDOS === */
.card img {
    width: 100%;
    height: auto;           /* saglabā proporcijas */
    max-height: 400px;      /* maksimālais augstums, vari mainīt */
    object-fit: contain;    /* bilde pilnībā redzama */
    border-radius: 6px;
    margin-bottom: 10px;
}

/* === TABULA FILMĀM === */
table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

tr:hover {
    background: #f1f1f1;
    cursor: pointer;
}

/* === KOMENTĀRU FORMA === */
#commentForm {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 20px auto;
    gap: 10px;
}

#commentForm select,
#commentForm textarea,
#commentForm button {
    padding: 8px;
    font-size: 14px;
}

#commentForm button {
    cursor: pointer;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background 0.3s;
}

#commentForm button:hover {
    background: #555;
}

/* === KOMENTĀRI === */
.comment {
    background: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* === FILMAS INFO === */
#movieInfo {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}