

.app_header{
	width: 100%;
	height: 65px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.innterhder{
	width: 100%;
	height: 65px;
	background: white;
	display: flex;
}
.titlebg{
	width: calc(100% - 65px);
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 10px;
}
.menubtnbg{
	width: 65px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pflegefooterbg{
	z-index:1031;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75px;
	border-radius: 14px;
	    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

        
}

.app-footer-nav {
    width: 100%;
    height: 100%;
}

.app-footer-nav__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border-radius: 18px;
  
}

.app-footer-nav__item,
.app-footer-nav__item--button {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    border: none;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #1c1e21;
    cursor: pointer;
    padding: 10px 8px;
    box-sizing: border-box;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.app-footer-nav__item:hover,
.app-footer-nav__item--button:hover {
    transform: translateY(-2px);
    background: #f8fbff;
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.14);
    color: #1877f2;
}

.app-footer-nav__item:active,
.app-footer-nav__item--button:active {
    transform: translateY(0);
}

.app-footer-nav__icon {
    font-size: 22px;
    line-height: 1;
}

.app-footer-nav__label {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
}

.app-footer-nav__form {
    flex: 1 1 0;
    margin: 0;
    height: 100%;
}

.app-footer-nav__item--button {
    width: 100%;
    appearance: none;
    font: inherit;
}

/* Optional: aktiver/gef채hrlicher Logout-Look */
.app-footer-nav__item--button:hover {
    color: #d93025;
    background: #fff8f7;
}

/* Mobile Feinschliff */
@media (max-width: 768px) {
    .app-footer-nav__inner {
        gap: 8px;
        padding: 8px;
        border-radius: 14px;
    }

    .app-footer-nav__item,
    .app-footer-nav__item--button {
        border-radius: 12px;
        padding: 8px 6px;
        gap: 5px;
    }

    .app-footer-nav__icon {
        font-size: 20px;
    }

    .app-footer-nav__label {
        font-size: 11px;
    }
}

.app-footer-nav__item--call {
    background: linear-gradient(180deg,#28a745,#23923c);
    color: #fff;
}

.app-footer-nav__item--call:hover {
    background: linear-gradient(180deg,#23923c,#1f7f34);
    color: #fff;
}

/* Gast-Transfer in ?bersicht */
.guest-transfer-row:hover {
    background: rgba(13, 110, 253, 0.08);
}
.guest-transfer-row:active {
    background: rgba(13, 110, 253, 0.15);
}