body {
    margin-top: 5em;
}

a:hover {
    text-decoration: none;
    filter: brightness(85%);
}

.card {
    height: 100%;
}

.card_center {
    text-align: center;
}

.card_padding {
    height: 100%;
    padding-bottom: 1em;
}

.card_img {
    height: 48px;
    width: 48px;
}

.svg{
    fill: currentColor;
}

g, path{
   fill: currentColor;
}

.door-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 1rem;
}

.door-confirm-overlay.show {
    display: flex;
}

.door-confirm-dialog {
    width: min(420px, 100%);
    background: #ffffff;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.door-confirm-dialog h5 {
    margin-bottom: 0.5rem;
}

.door-confirm-dialog p {
    margin-bottom: 1rem;
}

.door-confirm-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.door-toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    min-width: 260px;
    max-width: 420px;
    background: #1f2937;
    color: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.door-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.door-toast.success {
    background: #157347;
}

.door-toast.error {
    background: #b02a37;
}