﻿@charset "UTF-8";*{padding:0;margin:0;box-sizing:border-box;}.page{font-family:sans-serif;margin:0;padding:0;background-color:#f9f9f9;}.page__header,.page__footer{width:100%;}.page__content{padding:1rem;margin-top:60px;margin-bottom:50px;}.header{display:flex;justify-content:space-between;align-items:center;width:100%;background-color:#fff;border-bottom:1px solid #ddd;padding:5px 10px;position:fixed;top:0;z-index:1;}.header__text__title{font-weight:bold;}.header__text__subtitle{font-size:.9rem;}.header__logo__img{height:50px;width:auto;}.header__nav{display:flex;gap:1rem;}.header__link{color:#fff;text-decoration:none;font-size:.9rem;}.header__link:hover{text-decoration:underline;}.user_auth{justify-content:space-between;width:100%;padding:15px;align-items:center;display:flex;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.1);position:relative;top:70px;}.user_auth span{display:inline-block;}.user_auth a{text-decoration:none;color:#f00;}.content__title{font-size:1.2rem;color:#333;}.content__text{color:#333;font-size:.95rem;}.mobile-footer{position:fixed;bottom:0;left:0;width:100%;background-color:#fff;border-top:1px solid #ddd;z-index:1000;}.mobile-footer__nav{display:flex;justify-content:space-around;align-items:center;padding:.5rem 0;}.mobile-footer__item{display:flex;flex-direction:column;align-items:center;text-decoration:none;color:#555;font-size:.8rem;}.mobile-footer__item:hover{color:#007bff;}.mobile-footer__icon{font-size:1.2rem;margin-bottom:.2rem;}.mobile-footer__label{font-size:.75rem;}.page-loader{position:fixed;inset:0;background:#fff;z-index:9999;display:flex;justify-content:center;align-items:center;flex-direction:column;transition:opacity .3s ease;}.page-loader__logo{width:80px;margin-bottom:20px;}.page-loader__spinner{width:40px;height:40px;border:4px solid #ccc;border-top-color:#28a745;border-radius:50%;animation:spin 1s linear infinite;}.page-loader__text{margin-top:10px;font-size:14px;color:#444;}.page-loader.hide{opacity:0;pointer-events:none;}@keyframes spin{to{transform:rotate(360deg);}}