/* Pamatstils visai lapai */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #2c3e50;
    color: #ecf0f1;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Navigācijas pogas */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    color: #ecf0f1;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Galvenais konteineris formām */
.container {
    background-color: #34495e;
    padding: 25px;
    margin: 20px auto;
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Formu stils */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

label {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

/* Ievades lauki un tekstlodziņš */
input, textarea {
    width: 80%;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* Teksta laukam fiksēts augstums */
textarea {
    resize: none;
    height: 80px;
}

/* Pogas stils */
button {
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    margin-top: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1em;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #c0392b;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

