/* Pamatstilistika */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
}

/* Konteiners */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Galvene */
header {
    background-color: #4e73df;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

/* Navigācijas izvēlne */
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 0 20px;
}

header nav ul li a:hover {
    color: #ffc107;
}

/* Galvenais saturs */
main h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

/* Formas */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input, select, button {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
}

input[type="datetime-local"], input[type="text"] {
    background-color: #f8f9fc;
}

button {
    background-color: #4e73df;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #2e59d9;
}

/* Akciju pogas */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-actions .btn-cancel {
    background-color: gray; /* Sarkans */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.form-actions .btn-cancel:hover {
    background-color: darkgray; /* Tumšāks sarkans */
}

/* Saglabāt pogas stils */
button[type="submit"] {
    background-color: #28a745;
    border: none;
}

button[type="submit"]:hover {
    background-color: #218838;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    background-color: white;
    color: #888;
    font-size: 14px;
}
