body {
    margin-top: 68px;
}

a.active{
    color: var(--color-teal-600);
}

.hero-fullscreen {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bg_1.jpeg');
    background-size: cover;
    background-position: top;
    position: relative;
}

.luxury-card {
    backdrop-filter: blur(20px);
    background-color:  rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-input {
    background-color: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent; 
}

.invalid{
    border-color: var(--color-red-400);
}

.invalid-feedback, .validation-message {
    color: var(--color-red-400); /* Tailwind red-400 */
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }