/* Shared styles for events pages */

/* Avoid horizontal shift when pages add/remove vertical scrollbar */
html {
    overflow-y: scroll;
}

/* Minimal, consistent navbar sizing */
.navbar {
    margin-bottom: 5px;
    min-height: 56px;
    border-bottom: 1px solid #dee2e6;
}
.navbar > .container {
    min-height: 56px;
    display: flex;
    align-items: center;
}
/* Prevent layout shift from logo image loading */
.navbar-brand {
    display: flex;
    align-items: center;
    min-height: 32px;
}
.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
}
/* Active nav link styling */
.navbar-nav .nav-link.active {
    color: #000000 !important;
}

/* Utility helpers for shared pages */
.logo-32 {
    height: 32px;
    width: auto;
    display: block;
}
.fs-5rem {
    font-size: 5rem;
}
.mw-600 {
    max-width: 600px;
}
.font-09 {
    font-size: 0.9rem;
}
.text-obtn {
    color: var(--obtn) !important;
}
.overlay-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gift card page shared styles */
.gavekort-card {
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.amount-input-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}
.amount-input {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
}
.amount-input:focus {
    border-color: var(--obtn);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.amount-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.amount-btn {
    flex: 1;
    min-width: 100px;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--obtn);
    background: white;
    color: var(--obtn);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.amount-btn:hover,
.amount-btn.active {
    background: var(--obtn);
    color: white;
}
.gift-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--obtn) 0%, var(--obaccent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.min-amount-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 5px;
}
@media (max-width: 767.98px) {
    .mobile-no-container {
        max-width: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


