.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #0b0f14;
  color: #fff;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.auth-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  padding: 6px 14px;
  border: none;
  cursor: pointer;
  background: #ff3d71;
  color: #fff;
  border-radius: 4px;
}

.btn.outline {
  background: transparent;
  border: 1px solid #ff3d71;
}

.btn.danger {
  background: #ff5252;
}

.d-none {
  display: none;
}

.user-name {
  margin-right: 10px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #121924;
  padding: 25px;
  width: 300px;
  border-radius: 8px;
}

.modal-content input {
  width: 100%;
  margin: 8px 0;
  padding: 8px;
}

.full {
  width: 100%;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 18px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

.modal.show {
  display: flex;
}