
body {
    margin: 0;
    padding: 0;
}

.table-container {
    overflow-x: auto;
}

.form-label {
    color: #85ab90;
}

.btn-danger {
    border-color: #dc3545;
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(133, 171, 144, 0.1);
}

.table-primary {
    background-color: #85ab90 !important;
    color: white;
}

th {
    background-color: #85ab90 !important;
    color: white;
}

.card {
    margin-top: 20px;
    border-color: #85ab90;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: #000 ;  /* Čierne pozadie */
    color: #fff; /* Biely text */
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1050;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease-in-out;
}

.cookie-banner button {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-banner button:hover {
    background: #ddd;
}

/* Skrytie s animáciou */
.cookie-banner.hide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#laureatesTable_wrapper {
    padding-bottom: 130px;
}

