
/* === eKebun CG trends layout === */
.cg-trends{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:16px}
@media(max-width:900px){.cg-trends{grid-template-columns:1fr}}
.cg-card{display:flex;flex-direction:column;min-height:360px}
.card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px}
.cg-chart{flex:1;min-height:280px;height:320px}
@media(max-width:600px){.cg-chart{height:260px}}
.cg-chart canvas{display:block;width:100%;height:100%}
.tf-actions .btn{padding:6px 10px}
.btn.active{outline:2px solid #4fd1c5}

/* === Glassmorphism & Trends === */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}
.dark .glass-card {
    background: rgba(17, 25, 40, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Background for Login/Register */
.animated-bg {
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    background-image: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Form Inputs */
.input-glass {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.input-glass:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #fff;
}
