
body {
    background: linear-gradient(135deg, #0a0a1a 0%, #141e30 50%, #1a2a3e 100%) !important;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 89, 155, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 155, 155, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 43, 126, 0.08) 0%, transparent 50%);
    animation: backgroundFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 89, 155, 0.05) 0%, transparent 70%);
    animation: waveRotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-10px, 10px) rotate(1deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(-1deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(1deg);
    }
}

@keyframes waveRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.login__block {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95), rgba(15, 30, 60, 0.95)) !important;
    border: 1px solid rgba(0, 89, 155, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 89, 155, 0.15);
    max-width: 420px;
    width: 100%;
    padding: 40px 35px;
    animation: subtlePulse 4s ease-in-out infinite, float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.login__block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2a4e7c, #3a5f8c, #4a6f9c, #3a5f8c, #2a4e7c);
    border-radius: 20px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
    opacity: 0.3;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(0, 89, 155, 0.2);
    }
    50% {
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.4),
            0 0 25px rgba(0, 89, 155, 0.3);
    }
}

.login__block__header {
    text-align: center;
    margin-bottom: 30px;
    animation: slideDownFade 0.8s ease-out;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login__block__header h4 {
    background: linear-gradient(90deg, #4a7ba7, #3a6a97, #5a8bb7, #4a7ba7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: textGradient 5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 89, 155, 0.3));
}

@keyframes textGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 89, 155, 0.3));
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(0, 89, 155, 0.5));
    }
}

.login__block__header small {
    color: #7a9cc0 !important;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: rgba(15, 25, 40, 0.8) !important;
    border: 1px solid rgba(0, 89, 155, 0.25) !important;
    color: #d0d8e0 !important;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-control::placeholder {
    color: #5a7a9a !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(20, 35, 55, 0.9) !important;
    border-color: rgba(74, 144, 226, 0.6) !important;
    box-shadow: 
        0 0 0 3px rgba(0, 89, 155, 0.15),
        0 0 15px rgba(0, 89, 155, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    outline: none;
    transform: scale(1.02);
}

@keyframes inputGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 3px rgba(0, 89, 155, 0.15),
            0 0 10px rgba(0, 89, 155, 0.15),
            inset 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 4px rgba(74, 144, 226, 0.2),
            0 0 20px rgba(74, 144, 226, 0.25),
            inset 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

.btn-theme {
    background: linear-gradient(135deg, #2a5a8a 0%, #3a6a9a 100%) !important;
    border: 1px solid rgba(74, 144, 226, 0.3) !important;
    color: #e0e8f0 !important;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 89, 155, 0.1);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-theme::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.btn-theme::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: buttonShine 4s ease-in-out infinite;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.btn-theme:hover {
    background: linear-gradient(135deg, #3a6a9a 0%, #4a7aaa 100%) !important;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(74, 144, 226, 0.2);
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(74, 144, 226, 0.5) !important;
}

.btn-theme:hover::before {
    width: 400px;
    height: 400px;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: translateY(-3px) scale(1.05);
    }
    50% {
        transform: translateY(-3px) scale(1.08);
    }
}

.btn-theme:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 2px 10px rgba(0, 153, 255, 0.4),
        0 0 20px rgba(0, 153, 255, 0.2);
}

hr {
    border: none !important;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a5a8a, #3a6a9a, #2a5a8a, transparent);
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    opacity: 0.5;
}

hr::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
    animation: hrSlide 4s linear infinite;
}

@keyframes hrSlide {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.login__block__body a {
    color: #4a90e2 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.login__block__body a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #5aa0f2);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(74, 144, 226, 0.3);
}

.login__block__body a:hover {
    color: #5aa0f2 !important;
    text-shadow: 0 1px 3px rgba(74, 144, 226, 0.3);
    transform: translateY(-1px);
}

.login__block__body a:hover::after {
    width: 100%;
}

.header {
    background: linear-gradient(135deg, #1a2a3e 0%, #2a3a4e 100%) !important;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.content__title h3 {
    color: #5aa0f2 !important;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.2);
    }
}

.quick-stats__item {
    background: linear-gradient(135deg, rgba(20, 35, 55, 0.9), rgba(30, 50, 75, 0.9)) !important;
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 89, 155, 0.1);
}

.quick-stats__item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05), transparent);
    animation: statRotate 15s linear infinite;
}

@keyframes statRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.quick-stats__item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(74, 144, 226, 0.2);
}

.quick-stats__info h2 {
    color: #5aa0f2 !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: numberCount 2s ease-in-out;
}

@keyframes numberCount {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.quick-stats__info small {
    color: #7a9cc0 !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.peity {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.peity rect {
    fill: url(#blueGradient) !important;
}

.peity svg {
    background: transparent;
}

.peity path {
    stroke: #00ffff !important;
    stroke-width: 2;
    fill: rgba(0, 255, 255, 0.2) !important;
}

select,
select.form-control,
#cobro {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(15, 25, 40, 0.9) !important;
    border: 1px solid rgba(0, 89, 155, 0.3) !important;
    color: #d0d8e0 !important;
    border-radius: 12px;
    padding: 14px 40px 14px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a90e2' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

select:hover,
#cobro:hover {
    border-color: rgba(74, 144, 226, 0.5) !important;
    background-color: rgba(20, 35, 55, 0.95) !important;
    transform: translateY(-1px);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

select:focus,
#cobro:focus {
    outline: none;
    border-color: rgba(74, 144, 226, 0.6) !important;
    box-shadow: 
        0 0 0 3px rgba(0, 89, 155, 0.15),
        0 0 15px rgba(74, 144, 226, 0.2),
        inset 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

select option,
#cobro option {
    background: #1a2a3e !important;
    color: #d0d8e0 !important;
    padding: 12px 16px;
}

.panel {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95), rgba(15, 30, 50, 0.95)) !important;
    border: 1px solid rgba(0, 89, 155, 0.3) !important;
    border-radius: 15px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 89, 155, 0.1);
    animation: panelFadeIn 0.8s ease-out;
    overflow: hidden;
    position: relative;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-heading {
    background: rgba(0, 89, 155, 0.1) !important;
    border-bottom: 1px solid rgba(74, 144, 226, 0.3) !important;
    border-radius: 13px 13px 0 0;
    padding: 18px 24px;
    position: relative;
    overflow: hidden;
}

.panel-heading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    animation: panelShine 5s ease-in-out infinite;
}

@keyframes panelShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.panel-heading h3 {
    color: #5aa0f2 !important;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-heading h3 i {
    color: #5aa0f2 !important;
    margin-right: 12px;
    animation: iconSpin 4s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.1);
    }
}

.table {
    color: #d0d8e0 !important;
}

.table-striped tbody tr {
    background: rgba(15, 25, 40, 0.5) !important;
    border-bottom: 1px solid rgba(0, 89, 155, 0.2);
    transition: all 0.3s ease;
}

.table-striped tbody tr:hover {
    background: rgba(0, 89, 155, 0.15) !important;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.table-responsive {
    border: 1px solid rgba(0, 89, 155, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.6) !important;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

tbody#ccs,
.threads tbody {
    background: transparent !important;
    min-height: 100px;
    display: block;
    padding: 20px;
}

tbody#ccs tr td,
tbody#ccs div,
.threads tbody tr td,
.threads tbody div {
    color: #d0d8e0 !important;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(20, 35, 55, 0.7), rgba(25, 45, 65, 0.7)) !important;
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 12px;
    margin: 8px 0;
    font-size: 15px;
    animation: messageFadeSlide 0.6s ease-out;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(0, 89, 155, 0.05);
    transition: all 0.3s ease;
}

tbody#ccs tr td:hover,
tbody#ccs div:hover,
.threads tbody tr td:hover,
.threads tbody div:hover {
    transform: translateX(5px) scale(1.01);
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.4);
}

@keyframes messageFadeSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

tbody#ccs tr td:contains("Ha sido"),
tbody#ccs div:contains("Ha sido"),
.threads tbody tr td:contains("Ha sido"),
.threads tbody div:contains("Ha sido") {
    background: linear-gradient(135deg, rgba(20, 60, 40, 0.3), rgba(30, 80, 50, 0.3)) !important;
    border-color: rgba(40, 150, 80, 0.4);
    color: #60d080 !important;
    animation: successPulse 1s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 255, 136, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

#cover-spin {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    width: 100%;
}

#cover-spin::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 89, 155, 0.15);
    border-top-color: #4a90e2;
    border-right-color: #3a7ac2;
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
}

@keyframes spinLoader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.scrollbar::-webkit-scrollbar,
::-webkit-scrollbar {
    width: 10px;
}

.scrollbar::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a1020, #151830);
    border-radius: 5px;
}

.scrollbar::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2a5a8a, #3a6a9a);
    border-radius: 5px;
    border: 1px solid #0a1020;
    transition: all 0.3s ease;
}

.scrollbar::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3a6a9a, #4a7aaa);
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.2);
}

.card {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95), rgba(15, 30, 50, 0.95)) !important;
    border: 1px solid rgba(0, 89, 155, 0.3) !important;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05), transparent);
    animation: cardFloat 20s linear infinite;
}

@keyframes cardFloat {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.5);
}

.card-body {
    color: #d0d8e0 !important;
    position: relative;
    z-index: 1;
}

label {
    color: #7a9cc0 !important;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

label:hover {
    color: #5aa0f2 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

input[type="email"],
input#email {
    background: rgba(15, 25, 40, 0.8) !important;
    border: 1px solid rgba(0, 89, 155, 0.25) !important;
    color: #d0d8e0 !important;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 250px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

input[type="email"]:focus,
input#email:focus {
    background: rgba(20, 35, 55, 0.9) !important;
    border-color: rgba(74, 144, 226, 0.6) !important;
    box-shadow: 
        0 0 0 3px rgba(0, 89, 155, 0.15),
        0 0 15px rgba(74, 144, 226, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    outline: none;
    transform: scale(1.02);
}

.ti-new-window,
.zwicon-sign-in {
    color: #4a90e2;
    margin: 0 5px;
    transition: all 0.3s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-2px) rotate(3deg);
    }
}

.ti-new-window:hover,
.zwicon-sign-in:hover {
    color: #5aa0f2;
    text-shadow: 0 1px 3px rgba(74, 144, 226, 0.3);
    transform: scale(1.15);
}

.navigation-trigger {
    color: #3a7ac2 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.navigation-trigger:hover {
    color: #4a90e2 !important;
    text-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
    transform: rotate(180deg) scale(1.2);
}

.form-group {
    margin-bottom: 25px;
    animation: formGroupSlide 0.6s ease-out both;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes formGroupSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

* {
    animation: pageEntry 0.5s ease-out;
}

@keyframes pageEntry {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .login__block {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .quick-stats__info h2 {
        font-size: 16px;
    }
    
    .content__title h3 {
        font-size: 22px;
    }
    
    .quick-stats__item:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .btn-theme {
        font-size: 14px;
        padding: 12px;
    }
    
    select,
    #cobro {
        padding: 12px 35px 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login__block__header h4 {
        font-size: 24px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .panel-heading h3 {
        font-size: 16px;
    }
    
    tbody#ccs tr td,
    tbody#ccs div,
    .threads tbody tr td,
    .threads tbody div {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@keyframes softGlow {
    0%, 100% {
        text-shadow: 
            0 1px 4px rgba(74, 144, 226, 0.3),
            0 2px 8px rgba(74, 144, 226, 0.2);
    }
    50% {
        text-shadow: 
            0 1px 6px rgba(74, 144, 226, 0.4),
            0 2px 12px rgba(74, 144, 226, 0.3);
    }
}

.soft-glow {
    animation: softGlow 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0.5);
        opacity: 0;
    }
}

.particle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat 10s linear infinite;
}

