/* 공통 감성 스타일 정의 */
:root {
  --bg-primary: #FAF6F0;
  --bg-card: rgba(255, 255, 255, 0.88);
  --color-text-main: #4A3E3D;
  --color-text-muted: #8E7C77;
  --color-primary: #FF9AA2;
  --color-primary-hover: #FF7B84;
  --color-secondary: #FFB7B2;
  --color-accent: #FFDAC1;
  --color-border: #F3EAE8;
  --font-family-sans: 'Outfit', 'Noto Sans KR', sans-serif;
  --font-family-serif: 'Gowun Batang', serif;
  --shadow-soft: 0 8px 30px rgba(228, 206, 203, 0.3);
  --shadow-hover: 0 15px 35px rgba(228, 206, 203, 0.55);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-sans);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 10% 20%, rgba(255, 218, 193, 0.2) 0px, transparent 50%),
    radial-gradient(at 90% 10%, rgba(255, 154, 162, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(226, 240, 203, 0.15) 0px, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.screen {
  opacity: 1;
  transition: opacity 0.5s ease;
  width: 100%;
}

.hidden {
  display: none !important;
  opacity: 0;
}

/* 1. 설정 화면 (Setup Screen) */
#setup-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.setup-container {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 45px 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 450px;
  width: 100%;
  text-align: center;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.setup-heart {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  animation: heartbeat 1.5s infinite ease-in-out;
}

.setup-container h2 {
  font-family: var(--font-family-serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #5C4643;
}

.setup-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 154, 162, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 154, 162, 0.4);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 162, 0.6);
}

.btn-submit:active {
  transform: translateY(0);
}

/* 2. 메인 화면 (Main Screen) */

/* 헤더 디자인 */
.main-header {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #FFE5EC 0%, #FFC6FF 100%);
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(74,62,61,0.15) 100%);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  animation: fadeIn 1s ease-out;
}

.couple-title {
  font-family: var(--font-family-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5C4643;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.heart-pulse {
  color: #FF4D6D;
  animation: heartbeat 1.2s infinite ease-in-out;
  display: inline-block;
}

.dday-badge {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(74, 62, 61, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.dday-badge span {
  font-weight: 600;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.dday-number {
  font-family: var(--font-family-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF4D6D !important;
  background: linear-gradient(135deg, #FF4D6D, #FF7B84);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.anniversary-date {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6C5E5C;
  letter-spacing: 0.5px;
}

.btn-icon {
  position: absolute;
  top: -80px;
  right: -20px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  outline: none;
}

.btn-icon:hover {
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn-icon i {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
}

/* 메인 레이아웃 */
.main-container {
  max-width: 1200px;
  width: 100%;
  margin: -40px auto 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  z-index: 5;
  position: relative;
  flex: 1;
}

/* 카드 공통 */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.card-header-flex .card-header {
  margin-bottom: 0;
}

.card-icon {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.card h3 {
  font-family: var(--font-family-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #5C4643;
}

/* 다가오는 기념일 리스트 */
.anniversary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anniversary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease;
}

.anniversary-item:hover {
  background: rgba(255, 255, 255, 0.8);
}

.anniversary-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.anniversary-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.anniversary-date-val {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.anniversary-dday {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  background: #FFF0F0;
  padding: 4px 10px;
  border-radius: 20px;
}

.anniversary-dday.past {
  color: var(--color-text-muted);
  background: #F3ECEB;
}

/* 편지 (방명록) 스타일 */
.letter-form {
  margin-bottom: 20px;
}

.writer-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.writer-option input {
  display: none;
}

.writer-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-text-muted);
}

.writer-option input:checked + .writer-btn {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(255, 154, 162, 0.25);
}

.letter-input-wrapper {
  position: relative;
  display: flex;
}

.letter-input-wrapper textarea {
  width: 100%;
  padding: 12px 50px 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.6);
  resize: none;
  height: 60px;
  outline: none;
  transition: all 0.3s ease;
}

.letter-input-wrapper textarea:focus {
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 154, 162, 0.1);
}

.btn-send {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border: none;
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-send:hover {
  background: var(--color-primary-hover);
  transform: scale(1.05);
}

.btn-send i {
  color: white;
  width: 16px;
  height: 16px;
}

.letter-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 5px;
}

/* 스크롤바 디자인 */
.letter-list::-webkit-scrollbar,
.memory-grid::-webkit-scrollbar {
  width: 6px;
}
.letter-list::-webkit-scrollbar-track,
.memory-grid::-webkit-scrollbar-track {
  background: transparent;
}
.letter-list::-webkit-scrollbar-thumb,
.memory-grid::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 10px;
}

.letter-item {
  padding: 14px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeIn 0.4s ease;
}

.letter-item.me {
  border-left: 4px solid var(--color-primary);
}

.letter-item.partner {
  border-left: 4px solid #BCE29E;
}

.letter-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.letter-writer {
  font-size: 0.8rem;
  font-weight: 700;
}

.letter-writer.me {
  color: var(--color-primary);
}

.letter-writer.partner {
  color: #7AA857;
}

.letter-time {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.letter-content {
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: break-all;
}

/* 추억 앨범 그리드 */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 154, 162, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 154, 162, 0.45);
}

.btn-primary i {
  color: white;
  width: 16px;
  height: 16px;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.memory-card-item {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(228, 206, 203, 0.2);
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.memory-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(228, 206, 203, 0.45);
}

.memory-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 비율 */
  background: #FFF5F5;
  overflow: hidden;
}

.memory-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.memory-card-item:hover .memory-img {
  transform: scale(1.08);
}

.memory-no-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-text-muted);
  gap: 8px;
}

.memory-no-img i {
  width: 32px;
  height: 32px;
  color: var(--color-border);
}

.memory-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.memory-date-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: #FFF0F0;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.memory-title {
  font-family: var(--font-family-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #5C4643;
  line-height: 1.3;
}

.memory-content {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  word-break: break-all;
  white-space: pre-line;
}

/* 빈 목록 상태 */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-state i {
  width: 48px;
  height: 48px;
  color: var(--color-border);
}

/* 3. 모달 (Modal) 스타일 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 62, 61, 0.4);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  width: 100%;
  max-width: 550px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  padding: 30px;
  z-index: 101;
  animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.modal-header h3 {
  font-family: var(--font-family-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.btn-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-close i {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.btn-close:hover i {
  color: var(--color-text-main);
}

/* 이미지 드롭존 업로드 영역 */
.drop-zone {
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  background: #FAFAFA;
}

.drop-zone:hover {
  border-color: var(--color-primary);
  background: #FFF5F5;
}

.drop-icon {
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.drop-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.image-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-md);
  background: white;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-remove-preview {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
}

/* 푸터 */
.main-footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: auto;
}

/* 애니메이션 Keyframes */
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.12); }
  70% { transform: scale(1); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* 반응형 미디어 쿼리 */
@media (max-width: 1024px) {
  .main-container {
    grid-template-columns: 1fr;
  }
  .sidebar-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
  }
  .card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .main-header {
    height: 300px;
  }
  .btn-icon {
    top: 15px;
    right: 15px;
  }
  .couple-title {
    font-size: 2rem;
  }
  .sidebar-section {
    grid-template-columns: 1fr;
  }
  .main-container {
    margin-top: -20px;
  }
  .modal-content {
    padding: 20px;
  }
}

/* --- 다중 미리보기 썸네일 스타일 --- */
.image-preview-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 4px;
  margin-top: 15px;
  width: 100%;
}

.preview-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-remove-thumb {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(74, 62, 61, 0.75);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.btn-remove-thumb:hover {
  background: rgba(255, 77, 109, 0.9);
}

/* --- 캐러셀 슬라이더 스타일 --- */
.memory-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: #FFF5F5;
  overflow: hidden;
}

.memory-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}

.memory-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  opacity: 0;
  transition: all 0.3s ease;
}

.memory-image-wrapper:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-btn i {
  width: 16px;
  height: 16px;
  color: var(--color-text-main);
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot.active {
  width: 14px;
  border-radius: 10px;
  background: white;
}

/* --- 추억 카드 수정/삭제 버튼 스타일 --- */
.memory-card-item {
  position: relative;
}

.memory-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-5px);
}

.memory-card-item:hover .memory-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-action {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(74, 62, 61, 0.08);
  transition: all 0.2s ease;
}

.btn-action:hover {
  transform: scale(1.1);
  background: white;
}

.btn-action.edit:hover i {
  color: #3b82f6;
}

.btn-action.delete:hover i {
  color: #ef4444;
}

.btn-action i {
  width: 14px;
  height: 14px;
  color: var(--color-text-muted);
}
