/* === PAMATSTILS === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #222;
}

/* === HEADER === */
header {
    background: #222;
    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: #444;
    color: white;
    border-radius: 6px;
    transition: 0.2s;
}

nav button:hover {
    background: #666;
    transform: scale(1.05);
}

/* === SKATI === */
.view {
    padding: 20px;
}

.hidden {
    display: none;
}

/* === FILMU GRID === */
#movieCards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* === TABULA === */
table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background: #f0f0f0;
}

/* === KOMENTĀRU FORMA === */
#commentForm {
    display: flex;
    flex-direction: column;
    width: 320px;
    margin: 20px auto;
    gap: 10px;
}

#commentForm select,
#commentForm textarea,
#commentForm button {
    padding: 10px;
    font-size: 14px;
}

#commentForm textarea {
    resize: none;
    height: 80px;
}

#commentForm button {
    background: #222;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

#commentForm button:hover {
    background: #444;
}

/* === KOMENTĀRI === */
.comment {
    background: white;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* komentāru pogas */
.comment button {
    margin-right: 5px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.comment button:hover {
    opacity: 0.8;
}

/* === FILMAS INFO === */
#movieInfo {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* === TOAST Paziņojumi === */
#toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 16px;
    color: white;
    border-radius: 6px;
    display: none;
    z-index: 9999;
    font-size: 14px;
}