body {
    background-image: url('/assets/images/top-bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

/* NEXT GEN */

:root {
    --yellow-color: #fed15b;
    --blue-color: #23445f;
    --blue-darken-color: #1a202b;
}

.yellow-bg {
    background-color: var(--yellow-color)
}

.event .card-panel {
    color: var(--blue-color);
}

.event .card-panel h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue-color);
}
.event .card-panel b {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-color);
}

.nextgen-bg {
    position: fixed;
    right: -10%;
    bottom: 10vh;
    width: 90%;
}

.nextgen-bg img {
    width: 100%;
}

body .primary-bg {
    background-color: var(--blue-color);
}

.pagetitle {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 20px;
}

.pagetitle>div{
    display: flex;
    flex-direction: column;
    align-items: end;
    font-size: 24px;
    letter-spacing: 4px;
}

.pagetitle img {
    width: 35px;
    margin-top: 5px;
}
.pagetitle::after {
    display: none;
}

.logo {
    width: 50%;
    margin: 20px auto;
    text-align: center;
}

.logo img {
    width: 100%;
    max-width: 400px;
}

.date h4 {
    font-size: 1.5rem !important;
    color: var(--blue-color);
}

.blue-bg {
    background-color: var(--blue-color);
    color: white !important;
}
.blue-bg h4 {
    color: white !important;
}

.end-bg {
    opacity: 0.5;
}

.footer-menu-ios {
    height: 75px;
}

.page-footer {
    padding: 0;
    padding-bottom: 50px !important;
    background: none !important;
}

.footer-copyright {
    background: none !important;
}

.unauth {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.backtotop {
    left: auto;
    right: 20px;
}

.bg-primary {
    background-color: #224761;
}

.bg-primary:hover {
    background-color: #1e3d53;
}
/* Podstawowy styl alertu */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-family: sans-serif;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px; /* miejsce na ikonę lub odstęp między elementami */
}

/* Alert — sukces */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* Alert — błąd */
.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.list-codes th {
    width: 25%;
}

.list-codes tr>td:last-child {
    float: right;
}

.button-group form {
    display: inline-block;
}