/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main-layout[b-pnjd2v5n2v] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
/* /Components/Pages/ActualPresent.razor.rz.scp.css */
.present-container[b-91d6c66v4z] {
    min-height: 100vh;
    width: 100%;
    padding: 24px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient( 180deg, #f6f8fb 0%, #eef2f7 100% );
}

.present-content[b-91d6c66v4z] {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
}

/* Zurück-Link */
.back-link[b-91d6c66v4z] {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #007bff;
}

/* Titel */
.title[b-91d6c66v4z] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Untertitel */
.subtitle[b-91d6c66v4z] {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Info-Texte */
.info-text[b-91d6c66v4z] {
    font-size: 1.1rem;
    text-align: center;
    color: #6c757d;
    margin-top: 32px;
}

/* Liste */
.person-list[b-91d6c66v4z] {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Einzelne Person */
.person-item[b-91d6c66v4z] {
    padding: 16px 18px;
    border-radius: 14px;
    background-color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Name */
.person-name[b-91d6c66v4z] {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2px;
}

/* Zeit */
.person-time[b-91d6c66v4z] {
    font-size: 0.9rem;
    color: #6c757d;
}

.person-list-wrapper[b-91d6c66v4z] {
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 4px;
}

@media (min-width: 768px) {
    .present-content[b-91d6c66v4z] {
        max-width: 640px;
    }

    .title[b-91d6c66v4z] {
        font-size: 2rem;
    }

    .person-name[b-91d6c66v4z] {
        font-size: 1.3rem;
    }

    .person-time[b-91d6c66v4z] {
        font-size: 1rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-container[b-94yfqsewnr] {
    min-height: 100vh;
    width: 100%;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient( 180deg, #f6f8fb 0%, #eef2f7 100% );
}

.status-card[b-94yfqsewnr] {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    text-align: center;
}

/* Logo */
.logo[b-94yfqsewnr] {
    max-height: 200px;
    opacity: 0.85;
}

/* Name */
.person-name[b-94yfqsewnr] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Logout Button */
.logout-button[b-94yfqsewnr] {
    background: none;
    border: none;
    font-size: 1.1rem;
    margin-left: 0.5rem;
    cursor: pointer;
    opacity: 0.6;
}

    .logout-button:hover[b-94yfqsewnr] {
        opacity: 1;
    }

/* Action Button */
.action-button[b-94yfqsewnr] {
    width: 100%;
    height: 88px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 18px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

    .action-button:hover[b-94yfqsewnr] {
        filter: brightness(1.05);
    }

    .action-button:active[b-94yfqsewnr] {
        transform: scale(0.97);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2) inset;
    }

/* Bootstrap Farben */
.btn-success[b-94yfqsewnr] {
    background-color: #28a745;
    color: #fff;
}

.btn-danger[b-94yfqsewnr] {
    background-color: #dc3545;
    color: #fff;
}

/* Anzahl */
.present-count[b-94yfqsewnr] {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Nicht eingeloggt */
.not-logged-in p:first-child[b-94yfqsewnr] {
    font-size: 1.7rem;
    font-weight: 700;
}

.not-logged-in p:last-child[b-94yfqsewnr] {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 24px;
}

.login-link[b-94yfqsewnr] {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #007bff;
}

/* Aus App ausloggen / Cookie löschen */
.logout-container[b-94yfqsewnr] {
    margin-top: 16px;
    text-align: center;
}

.logout-text[b-94yfqsewnr] {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.logout-button[b-94yfqsewnr] {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.6;
    margin-left: 0.5rem;
}

    .logout-button:hover[b-94yfqsewnr] {
        opacity: 1;
        color: #495057;
    }

    .logout-button:active[b-94yfqsewnr] {
        transform: scale(0.97);
    }


/* Mobile UX */
button[b-94yfqsewnr] {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    .action-button[b-94yfqsewnr] {
        transition: none;
    }
}
/* /Components/Pages/Login/Login.razor.rz.scp.css */
.login-container[b-p3fblbq0rf] {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #eef2f7, #f9fbfd);
}

.login-card[b-p3fblbq0rf] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Zurück */
.back-link[b-p3fblbq0rf] {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #007bff;
}

/* Titel */
.title[b-p3fblbq0rf] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Untertitel */
.subtitle[b-p3fblbq0rf] {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Input */
.email-input[b-p3fblbq0rf] {
    width: 100%;
    height: 60px;
    padding: 0 16px;
    font-size: 1.1rem;
    border-radius: 14px;
    border: 1px solid #ced4da;
    margin-bottom: 16px;
}

    .email-input:focus[b-p3fblbq0rf] {
        outline: none;
        border-color: #007bff;
    }

/* Button */
.login-button[b-p3fblbq0rf] {
    width: 100%;
    height: 64px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    background-color: #007bff;
    color: white;
}

    .login-button:disabled[b-p3fblbq0rf] {
        opacity: 0.6;
    }

/* Message */
.message[b-p3fblbq0rf] {
    margin-top: 16px;
    font-size: 1rem;
    text-align: center;
    color: #495057;
}
/* /Components/Pages/Login/Magic.razor.rz.scp.css */
.magic-container[b-5ardrjn78q] {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #eef2f7, #f9fbfd);
}

.magic-card[b-5ardrjn78q] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

/* Titel */
.title[b-5ardrjn78q] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Status */
.status-text[b-5ardrjn78q] {
    font-size: 1.2rem;
    line-height: 1.4;
}

    /* Neutral */
    .status-text.neutral[b-5ardrjn78q] {
        color: #495057;
    }

    /* Erfolg */
    .status-text.success[b-5ardrjn78q] {
        color: #28a745;
        font-weight: 600;
    }

    /* Fehler */
    .status-text.error[b-5ardrjn78q] {
        color: #dc3545;
        font-weight: 600;
        margin-bottom: 16px;
    }

/* Retry-Link */
.retry-link[b-5ardrjn78q] {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #007bff;
}
