@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
}

.bg-viettel {
  background-color: #ee0033;
}

.text-viettel {
  color: #ee0033;
}

.table-container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* Ẩn mặc định trước khi render */
#main-app {
  display: none;
}

.input-focus:focus {
  border-color: #ee0033;
  box-shadow: 0 0 0 3px rgba(238, 0, 51, 0.1);
}

.row-deleted td,
.row-deleted div,
.row-deleted span {
  text-decoration: line-through !important;
  color: #94a3b8 !important;
  background: transparent !important;
}

.row-deleted {
  opacity: 0.6;
  background-color: #f8fafc !important;
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Tùy chỉnh chữ gợi ý (placeholder) cho toàn bộ hệ thống */
input::placeholder,
textarea::placeholder {
  font-weight: 400 !important;
  /* Chuyển về nét thường/mảnh (bỏ in đậm) */
  font-size: 13px !important;
  /* Thu nhỏ kích thước chữ */
  color: #94a3b8 !important;
  /* Giữ màu xám nhạt tinh tế */
  font-style: italic !important;
}




/* --- HIỆU ỨNG CHUYỂN ĐỘNG MƯỢT MÀ --- */

/* Hiệu ứng trượt nhẹ và mờ dần khi trang load */
.fade-in {
  animation: slideUp 0.6s ease-out forwards;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hiệu ứng "nhún" nút bấm khi click vào */
button:active {
  transform: scale(0.96) !important;
  transition: transform 0.1s ease;
}

/* Hiệu ứng lơ lửng (hover) trên các khối thẻ */
.service-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Hiệu ứng cho input khi focus (nhấn vào) */
.input-focus:focus {
  border-color: #ee0033 !important;
  /* Màu đỏ Viettel */
  box-shadow: 0 0 0 3px rgba(238, 0, 51, 0.1);
}




/* --- ANIMATION CHO SHIBA INU --- */
.shiba-pop {
  /* Chó bật lên với độ nảy nhẹ (cubic-bezier) */
  animation: shibaJump 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.2s;
  /* Chờ bảng đăng nhập hiện xong mới nhảy ra */
}

@keyframes shibaJump {
  from {
    top: 20px;
    opacity: 0;
  }

  to {
    top: -90px;
    /* Nhô đầu lên khỏi bảng đăng nhập */
    opacity: 1;
  }
}