/* Command Bar Styles */
.command-bar-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.command-bar-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.command-bar-input:focus {
    background-color: #fff;
    border-color: #fff;
    color: #212529;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.command-bar-input:focus::placeholder {
    color: #6c757d;
}