/* Pamatstils */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body stils */
body {
    background: linear-gradient(to bottom right, #f0f4f8, #e3f2fd);
    color: #333;
    line-height: 1.6;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Konteiners */
.container {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 20px;
}

/* Virsraksti */
h1 {
    color: #2c3e50;
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #007bff;
    padding-bottom: 5px;
}

h2 {
    color: #34495e;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ecf0f1;
}

/* Sadaļu stils */
dl {
    font-size: 16px;
    margin-bottom: 20px;
}

dt {
    font-weight: bold;
    color: #2c3e50;
    margin-top: 10px;
}

dd {
    margin-left: 20px;
    color: #555;
    margin-bottom: 10px;
}

/* Tabulas stils */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 16px;
}

table th {
    background-color: #f1f1f1;
    color: #555;
}

table td {
    background-color: #fafafa;
    color: #555;
}

/* Akciju pogas */
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.actions .btn {
    padding: 12px 20px;
    margin: 5px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    font-size: 16px; /* Vienāda izmēra pogām */
}

.actions .btn-primary {
    background-color: #007bff; /* Blue for Edit */
    color: #fff;
    border: none;
}

.actions .btn-danger {
    background-color: #dc3545; /* Red for Delete */
    color: #fff;
    border: none;
}

.actions .btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: none;
}

.actions .btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Stilizēta saite */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Saskaņota fona krāsa atkarībā no atlikušajām reizēm */
.bg-green-200 {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.bg-red-200 {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Responsīvie stili */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .container {
        padding: 25px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    table th, table td {
        padding: 10px;
        font-size: 14px;
    }

    .actions .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}
