body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

.navbar {
    background-color: #212529;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}
.navbar-brand-logo {
    height: 3rem;
    width: 3rem;
    margin-right: 0.5rem;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: 600;
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.list-group-item {
    border: none;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}


table {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
}

footer {
    background-color: #212529;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
    padding: 0;
}

.cookie-banner a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-button:hover {
    background-color: #45a049;
}

