/* Active Class Tab Navigasi */
.tab-btn.active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #fbbf24 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab-btn:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}
.tab-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Animasi Entry Chat */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hilangkan Outline Standar Input Box */
input:focus {
    box-shadow: none !important;
}