:root {
    --white: #fff;
    --blue-dark: #4338ca;
    --blue: #6366f1;
    --black: #171717;
    --red-dark: #991b1b;
    --red: #dc2626;
    --red-light: #fef2f2;
    --green: #15803d;
    --green-light: #f0fdf4;
}

.navbar-brand img,
footer .container img {
    height: 60px;
}

.card img {
    width: 100%;
    height: 285px;
    object-fit: contain;
    border-radius: 1rem;
    /* aspect-ratio: 16/9; */
}

.footer a img {
    filter: invert(100%);
}

.toast-notification {
    border-radius: 125rem;
    padding: 4px 10px 4px 4px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    position: fixed;
    top: 2.5rem;
    right: 50%;
    width: 88%;
    max-width: 507px;
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-notification.success {
    background: var(--green-light);
}

.toast-notification.failure {
    background: var(--red-light);
}

.badge {
    background: var(--white);
    border-radius: 62.4375rem;
    padding: 2px 10px 2px 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.badge-text {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.badge-text.success {
    color: var(--green);
}

.badge-text.failure {
    color: var(--red-dark);
}

.content {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.message {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.message.success {
    color: var(--green);
}

.message.failure {
    color: var(--red);
}
