/**
 * Dealer Quick Order App sidebar styles.
 */

.dqoa-sidebar {
  background: #ffffff;
  border-right: 1px solid #edf2f7;
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  box-shadow: 8px 0 30px rgba(17, 24, 39, 0.03);
}

.dqoa-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.dqoa-brand-mark {
  display: none;
}

.dqoa-brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 15px;
  background: var(--dqoa-dark);
  padding: 7px;
  border-radius: 10px !important;
}

.dqoa-brand-text {
  font-size: 22px;
  color: var(--dqoa-dark);
}

.dqoa-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dqoa-nav-item {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 15px;
  color: #374151;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.2s ease;
}

.dqoa-nav-item:hover {
  background: #f8fafc;
  color: var(--dqoa-dark);
}

.dqoa-nav-item.dqoa-active {
  background: #fff1f2;
  color: var(--dqoa-red);
  box-shadow: inset 4px 0 0 var(--dqoa-red);
}

.dqoa-support-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 36px;
  border: 1px solid var(--dqoa-border);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  max-height: calc(100vh - 260px);
}

.dqoa-support-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--dqoa-dark);
}

.dqoa-support-phone {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 17px;
}

.dqoa-support-hours {
  display: block;
  margin-bottom: 14px;
  color: var(--dqoa-muted);
  font-size: 14px;
  line-height: 1.45;
}

.dqoa-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  border-radius: 12px;
  background: var(--dqoa-red);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

.dqoa-support-btn:hover {
  background: var(--dqoa-red-dark);
  color: #ffffff;
}
