* {
  box-sizing: border-box;
}

/* APP LAYOUT */
#paklette-app {
  display: flex;
  gap: 30px;
  font-family: 'Inter', sans-serif;
  align-items: flex-start;
}

/* LEFT PANEL */
.psg-left {
  width: 40%;
}

/* RIGHT PANEL */
.psg-right {
  width: 60%;
  position: sticky;
  top: 20px;
}

/* CARD */
.psg-card {
  background: #ffffff;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

/* HEADINGS */
.psg-card h4 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

/* INPUTS */
.psg-card input,
.psg-card textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.2s ease;
}

.psg-card input:focus,
.psg-card textarea:focus {
  border-color: #02a0e5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(2,160,229,0.1);
}

/* UPLOAD BOX */
.upload-box {
  border: 2px dashed #dcdcdc;
  padding: 16px;
  text-align: center;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
  background: #fafafa;
}

.upload-box:hover {
  border-color: #02a0e5;
  background: #f0f8ff;
}

.upload-box.dragging {
  border-color: #02a0e5;
  background: #e6f6ff;
}

/* PREVIEW PANEL */
.psg-preview {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  min-height: 200px;
}

/* COPY BUTTON */
#copyBtn {
  width: 100%;
  padding: 12px;
  background: #02a0e5;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#copyBtn:hover {
  background: #028ac4;
}

/* SMALL TEXT */
small {
  color: #888;
}