/* Pamatstilistika */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
}

/* Konteiners */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* Virsraksts */
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000; /* Galvenā krāsa */
    font-size: 28px;
}

/* Saraksta stils */
dl {
    margin: 0;
    padding: 0;
}

dt {
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

dd {
    margin: 0 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #000000;
    background-color: #f8f9fc;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
}

/* Poga atpakaļ */
.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Edit poga */
.btn-edit {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #2685df; /* Dzeltens */
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}


.btn-edit:hover {
    background-color: #264994; /* Tumšāka dzeltens krāsa */
}

/* Delete poga */
.btn-delete {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #dc3545; /* Sarkans */
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-delete:hover {
    background-color: #c82333; /* Tumšāks sarkans */
}

