﻿/*make all text elements in app not selectable */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.backgroundblur {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.austriaemail.HWP-AppBar {
    justify-items: center;
}

.austriaemail.HWP-AbbBar-Icon {
    margin-right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.mud-input > input.mud-input-root-outlined, div.mud-input-slot.mud-input-root-outlined {
    padding: 9px !important;
}

.avatar-circle {
    border-radius: 10%;
}

.avatar-rounded {
    border-radius: 5px;
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 3);
}

.centered {
    margin-top: 50px;
    margin-left: 50px;
}

.centerdiv {
    margin: auto;
    width: 60%;
}

@keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadein {
    animation: fadeInFromNone 2s ease-in-out;
}

.fadeinfast {
    animation: fadeInFromNone 1s ease-in-out;
}



/* Wassertropfen CSS für Warmwasser Animation */
div.drop-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 100px;
    width: 100px;
}


div.drop {
    position: absolute;
    top: -25%;
    width: 100%;
    height: 100%;
    border-radius: 100% 5% 100% 100%;
    transform: rotate(-45deg);
    margin: 0px;
    background: skyblue;
    animation: drip 2s forwards;
}

.drop-label {
    color: white;
    position: absolute;
    font-size: 1.5em;
    height: 1em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: auto;
    text-align: center;
    opacity: 0;
    animation: appear 1s 1s forwards;
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

div.drop-container:before,
div.drop-container:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 55%;
    right: 50%;
    transform: translate(50%) rotateX(75deg);
    border-radius: 100%;
    opacity: 0;
    width: 75%;
    height: 75%;
    border: 5px solid skyblue;
    animation: dripple 1s ease-out 1s;
}

div.drop-container:after {
    animation: dripple 1s ease-out 1.7s;
}


@keyframes drip {
    45% {
        top: 0;
        border-radius: 100% 5% 100% 100%;
        transform: rotate(-45deg);
    }

    100% {
        top: 0;
        transform: rotate(0deg);
        border-radius: 100%;
    }
}

@keyframes dripple {
    0% {
        width: 75px;
        height: 75px;
    }

    25% {
        opacity: 1;
    }

    100% {
        width: 250px;
        height: 250px;
        top: -20%;
        opacity: 0;
    }
}

.sticky-sidebar {
    position: sticky;
    top: 60px;
    max-height: calc(100vh - 32px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sites-list-container {
    overflow-y: auto;
}

.site-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.site-enabled {
    cursor: pointer;
}

.glass-card {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.child-card {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.mud-typography-responsive.mud-typography-h2 {
    font-size: clamp(1.75rem, 6vw, 3rem) !important;
}

.mud-typography-responsive.mud-typography-h4 {
    font-size: clamp(1.25rem, 4vw, 2rem) !important;
}

.mud-typography-responsive.mud-typography-h5 {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem) !important;
}

.mud-typography-responsive.mud-typography-h6 {
    font-size: clamp(1rem, 3vw, 1.25rem) !important;
}

.mud-typography-responsive.mud-typography-body2 {
    font-size: clamp(0.875rem, 2.5vw, 1rem) !important;
}
