body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
}

header {
  background: #1e88e5;
  color: #fff;
  padding: 12px 16px;
}

main {
  padding: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background: #fafafa;
}

.status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: capitalize;
}

.status.novo { background: #e3f2fd; color: #1565c0; }
.status.atendimento { background: #fff3e0; color: #ef6c00; }
.status.orcamento { background: #ede7f6; color: #5e35b1; }
.status.followup { background: #fce4ec; color: #ad1457; }
.status.fechado { background: #e8f5e9; color: #2e7d32; }
.status.perdido { background: #ffebee; color: #c62828; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #ddd;
  box-shadow: -2px 0 5px rgba(0,0,0,.1);
  padding: 12px;
}

.drawer.hidden {
  display: none;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-body textarea {
  width: 100%;
  height: 60px;
}
.acoes-atendimento {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.acoes-atendimento button {
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #0ea5e9;
  color: #fff;
  font-weight: 500;
}

.acoes-atendimento button:hover {
  opacity: 0.9;
}
