/* ===============================
   JOURNAL HEADER
================================ */
.journal-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #0b4bb3;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 10;
}

.back-btn img{
  width: 22px;
  height: 22px;
}

.journal-header-text{
  display: flex;
  flex-direction: column;
}

.journal-header-text strong{
  color: #fff;
  font-size: 16px;
}

.journal-header-text small{
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.journal-page{
  padding-top: 70px;
}

/* ===============================
   NEW ENTRY BUTTON
================================ */
.new-journal-btn{
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: #0b4bb3;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===============================
   JOURNAL CARD
================================ */
.journal-card{
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Top row */
.journal-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.journal-top h4{
  margin: 0;
  font-size: 15px;
}

/* Tags */
.tag{
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.tag.bullish{
  background: #e0f2fe;
  color: #0369a1;
}

.tag.bearish{
  background: #fee2e2;
  color: #b91c1c;
}

/* Date */
.journal-date{
  font-size: 12px;
  color: #9ca3af;
  margin: 6px 0;
}

/* CONTENT + ACTIONS (MAIN FIX) */
.journal-content{
  display: flex;
  justify-content: space-between;
  align-items: center;     /* 🔥 EXACT CENTER ALIGN */
  gap: 12px;
}

.journal-text{
  font-size: 14px;
  color: #374151;
  flex: 1;
  margin: 0;
}

/* Actions */
.journal-actions{
  display: flex;
  gap: 12px;
}

.journal-actions img{
  width: 20px;
  height: 20px;
}
