/* 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;
}

/* Sekciju stili */
.section {
    margin-bottom: 40px;
}

/* Virsraksti */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000; /* Galvenā krāsa */
    font-size: 32px;
    font-weight: 500;
}

h2 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Kompānijas informācijas kartes stils */
.company-card {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.company-title {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.company-address {
    color: #666;
    font-size: 18px;
}

/* Caurlaides un darbinieku tabulas */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.data-table th,
.data-table td {
    padding: 12px 18px;
    border: 1px solid #ddd;
    text-align: left;
}

.data-table th {
    background-color: #f4f4f9;
    color: #333;
    font-weight: 600;
}

.data-table td {
    background-color: #fafafa;
}

.no-data {
    text-align: center;
    font-style: italic;
    color: #888;
}
.btn-primary {
    text-decoration: none;
    padding: 10px 20px;
    color: rgb(77, 77, 77);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn-success {
    text-decoration: none;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    background-color: #575c6b;
    border-radius: 6px;
    font-weight: 600;
    
    transition: background-color 0.3s ease;
}

.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 */
}

/* Papildus sadaļu noformējums */
.company-card h1 {
    font-size: 32px;
    color: #333;
    font-weight: bold;
}

.company-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
    padding: 10px 0;
}

/* Stils pogām tabulās */

/* Uzlabotie noformējumi un pārskatāmība */
.table-section {
    margin-bottom: 30px;
}

.table-section h2 {
    font-size: 22px;
    color: #4e73df;
    margin-bottom: 15px;
    font-weight: 500;
}

.table-section .data-table th,
.table-section .data-table td {
    padding: 15px;
}

.data-table td {
    background-color: #fafafa;
}

.table-section .no-data {
    text-align: center;
    color: #777;
    font-style: italic;
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
