body {
    font-family: 'Roboto', sans-serif;
    background-color: #fef7ff;
    color: #1d1b20;
}
.sidebar-item.active {
    background-color: #e8def8;
    color: #1d192b;
}
.sidebar-item.active span {
    font-variation-settings: 'FILL' 1;
}
.md-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.md-button {
    border-radius: 20px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.2s;
}
.md-button-primary {
    background-color: #6750a4;
    color: white;
}
.md-button-primary:hover {
    background-color: #7e67be;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.md-input {
    border: 1px solid #79747e;
    border-radius: 4px;
    padding: 8px 12px;
    width: 100%;
}
.log-container {
    background-color: #1c1b1f;
    color: #e6e1e5;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 8px;
    height: 600px;
    overflow-y: auto;
    padding: 16px;
}
.vod-pic {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}
