/* Header */
.header {
  background: linear-gradient(180deg, #3a7ca5 0%, #2c5f7f 100%);
  color: white;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: #00d7ff;
}

.header h1 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.window-controls {
  display: flex;
  gap: 8px;
}

/* Menu */
.menu-bar {
  display: flex;
  background-color: var(--menu-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

/* Main content */
.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer e Action Bar */
.action-bar {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background-color: var(--menu-bg);
  border-top: 1px solid var(--border-color);
}

.status-bar {
  background-color: #1e1e1e;
  color: white;
  padding: 4px 12px;
  font-size: 11px;
  border-top: 1px solid var(--border-color);
}