
.laptop-icon[data-v-408572ed] {
  display: inline-block;
  vertical-align: middle;
  /* You can add default styles here if needed */
}
.remote-shell-root[data-v-a0d60751] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--edr-module-remote-shell-bg-color, #000);
  color: var(--edr-module-remote-shell-color, #0f0);
  font-family: "Courier New", Courier, monospace;
}
.header-container[data-v-a0d60751] {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: start;
  padding: 8px 15px;
  background: var(--edr-module-remote-shell-header-background-color, blue);
  color: var(--edr-module-remote-shell-header-text-color, #fff);
  border-bottom: 1px solid var(--edr-module-remote-shell-header-text-color, #444);
  font-size: 0.9rem;
}
.footer-container[data-v-a0d60751] {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: start;
  height: var(--edr-module-remote-shell-footer-height, auto);
  padding: 8px 15px;
  background: var(--edr-module-remote-shell-footer-background-color, blue);
  color: var(--edr-module-remote-shell-footer-text-color, #fff);
  border-top: 1px solid var(--edr-module-remote-shell-footer-text-color, #444);
  font-size: 0.9rem;
}
.footer-container .footer-title[data-v-a0d60751] {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}
.footer-container .footer-title span[data-v-a0d60751] {
  font-size: var(--edr-module-remote-shell-footer-text-size, medium);
}
.footer-container .footer-buttons[data-v-a0d60751] {
  display: flex;
  gap: 5px;
}
.footer-container .footer-buttons button[data-v-a0d60751] {
  color: var(--edr-module-remote-shell-footer-btn-text-color, green);
  background: var(--edr-module-remote-shell-footer-btn-background-color, #000);
  font-size: 14px;
  margin-bottom: 0;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  min-width: 70px;
  border-radius: 4px;
  overflow: hidden;
}
.header-status[data-v-a0d60751] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-title[data-v-a0d60751] {
  display: flex;
  align-items: center;
}
.header-buttons[data-v-a0d60751] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-close-btn[data-v-a0d60751] {
  background: transparent;
  border: none;
  color: var(--edr-module-remote-shell-header-close-btn-color, #aaa);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  line-height: 1;
}
.header-close-btn[data-v-a0d60751]:hover {
  background-color: var(--edr-module-remote-shell-header-close-btn-hover-bg-color, rgba(255, 68, 68, 0.2));
  color: var(--edr-module-remote-shell-header-close-btn-hover-color, #ff4444);
}
.status-indicator[data-v-a0d60751] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.status-indicator.connected[data-v-a0d60751] {
  background-color: var(--edr-module-remote-shell-status-connected-color, #00ff00);
}
.status-indicator.not-connected[data-v-a0d60751] {
  background-color: var(--edr-module-remote-shell-status-not-connected-color, #ff4444);
}
.status-indicator.is-connecting[data-v-a0d60751] {
  background-color: var(--edr-module-remote-shell-status-is-connecting-color, orange);
}
.remote-shell-textarea[data-v-a0d60751] {
  flex: 1;
  max-height: 600px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
  padding: 15px;
  font-size: 14px;
  line-height: 1.4;
  scrollbar-width: thin;
  scrollbar-color: var(--edr-module-remote-shell-scrollbar-track-color, #00ff00) var(--edr-module-remote-shell-scrollbar-thumb-color, #444);
}
.remote-shell-textarea[data-v-a0d60751]::-webkit-scrollbar {
  width: 8px;
}
.remote-shell-textarea[data-v-a0d60751]::-webkit-scrollbar-track {
  background: var(--edr-module-remote-shell-scrollbar-thumb-color, #444);
}
.remote-shell-textarea[data-v-a0d60751]::-webkit-scrollbar-thumb {
  background: var(--edr-module-remote-shell-scrollbar-track-color, #00ff00);
  border-radius: 4px;
}
.command-line[data-v-a0d60751] {
  display: flex;
  align-items: center;
  padding: 10px;
  background: var(--edr-module-remote-shell-bg-color, #000);
  height: 50px;
}
.command-line-span[data-v-a0d60751] {
  margin-right: 5px;
  color: var(--edr-module-remote-shell-color, #00ff00);
  white-space: nowrap;
}
.remote-shell-input[data-v-a0d60751] {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--edr-module-remote-shell-color, #00ff00);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.remote-shell-input input[data-v-a0d60751]::placeholder {
  color: var(--edr-module-remote-shell-color, #00ff00);
}
.remote-shell-input[data-v-a0d60751]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.file-upload-hidden[data-v-a0d60751] {
  display: none;
}