/* -----------------------------------------------
   Snej-Site: Große Button-Icons (Linktree-Style)
   ----------------------------------------------- */

/* Icon-Größe auf 48x48px mit abgerundeten Ecken */
.button .icon {
    width: 3rem;       /* 48px */
    height: 3rem;      /* 48px */
    margin-right: 0.75rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
}

/* Button-Layout: Icon links, Text zentriert */
.button {
    justify-content: flex-start;
    padding-left: 0.5rem;
    position: relative;
}

/* Text-Span zentrieren */
.button .btn-label {
    flex: 1;
    text-align: center;
}

/* -----------------------------------------------
   Background Image + Glassmorphism Box
   ----------------------------------------------- */

/* Background image for dark theme */
html.theme-dark body {
    background-image: url('/images/background.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-color: #0a0a0a !important;
}

/* Glass container for button stack */
/* display:inline-flex so text-align:center from .container centers it reliably */
.glass-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    vertical-align: top;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    width: 22rem;
    max-width: 100%;
}
