.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.schedule-table thead {
  background: #FF000D;
  color: #fff;
}

.schedule-table thead th {
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}

.schedule-table tbody tr:hover {
  background-color: #f8f9fa;
}

.schedule-table tbody tr:last-child {
  border-bottom: none;
}

.schedule-table tbody td {
  padding: 14px 12px;
  font-size: 15px;
  color: #333;
  vertical-align: middle;
}

.schedule-table tbody td:first-child {
  font-weight: 600;
  color: #1a1a1a;
}

.schedule-table .status-dayoff {
  background-color: #FFF4E6;
  color: #E65100;
  font-weight: 500;
}

.schedule-table .status-working {
  background-color: #E8F5E9;
  color: #2E7D32;
  font-weight: 500;
}

.schedule-table .status-delivery {
  background-color: #E3F2FD;
  color: #1565C0;
  font-weight: 500;
}

.schedule-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0 10px;
}

@media (max-width: 992px) {
  .schedule-table {
    font-size: 14px;
    margin: 25px 0;
  }

  .schedule-table thead th {
    padding: 14px 10px;
    font-size: 14px;
  }

  .schedule-table tbody td {
    padding: 12px 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .schedule-table-wrapper {
    margin: 0 -20px;
    padding: 0 30px;
  }

  .schedule-table {
    font-size: 13px;
    margin: 20px 0;
    min-width: 600px;
    border-radius: 6px;
  }

  .schedule-table thead th {
    padding: 12px 8px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }

  .schedule-table tbody td {
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.4;
  }

  .schedule-table .status-dayoff,
  .schedule-table .status-working,
  .schedule-table .status-delivery {
    font-size: 11px;
    padding: 8px 6px;
  }
}

@media (max-width: 480px) {
  .schedule-table-wrapper {
    margin: 0 -15px;
    padding: 0 25px;
  }

  .schedule-table {
    font-size: 11px;
    margin: 15px 0;
    min-width: 550px;
    border-radius: 4px;
  }

  .schedule-table thead th {
    padding: 10px 6px;
    font-size: 11px;
    letter-spacing: 0.2px;
  }

  .schedule-table tbody td {
    padding: 8px 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .schedule-table tbody td:first-child {
    font-size: 11px;
    font-weight: 700;
  }

  .schedule-table .status-dayoff,
  .schedule-table .status-working,
  .schedule-table .status-delivery {
    font-size: 10px;
    padding: 6px 4px;
    word-break: break-word;
  }
}

@media (max-width: 360px) {
  .schedule-table {
    min-width: 500px;
  }

  .schedule-table thead th {
    padding: 8px 5px;
    font-size: 10px;
  }

  .schedule-table tbody td {
    padding: 7px 5px;
    font-size: 10px;
  }

  .schedule-table .status-dayoff,
  .schedule-table .status-working,
  .schedule-table .status-delivery {
    font-size: 9px;
    padding: 5px 3px;
  }
}

.schedule-notice {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF000D 0%, #E31E24 100%);
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(255, 0, 13, 0.25);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  text-decoration: none;
  flex-wrap: nowrap;
  gap: 12px;
}

.schedule-notice:hover {
  text-decoration: none;
  color: #fff;
}

.schedule-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.snowflake {
  position: absolute;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 1;
  animation: snowfall linear infinite;
}

.snowflake-1 {
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
  font-size: 10px;
}

.snowflake-2 {
  left: 30%;
  animation-duration: 10s;
  animation-delay: 1s;
  font-size: 12px;
}

.snowflake-3 {
  left: 50%;
  animation-duration: 9s;
  animation-delay: 2s;
  font-size: 11px;
}

.snowflake-4 {
  left: 70%;
  animation-duration: 11s;
  animation-delay: 0.5s;
  font-size: 10px;
}

.snowflake-5 {
  left: 90%;
  animation-duration: 9.5s;
  animation-delay: 1.5s;
  font-size: 12px;
}

.snowflake-6 {
  left: 15%;
  animation-duration: 8.5s;
  animation-delay: 0.3s;
  font-size: 11px;
}

.snowflake-7 {
  left: 25%;
  animation-duration: 10.5s;
  animation-delay: 1.2s;
  font-size: 10px;
}

.snowflake-8 {
  left: 40%;
  animation-duration: 9s;
  animation-delay: 2.2s;
  font-size: 12px;
}

.snowflake-9 {
  left: 55%;
  animation-duration: 11.5s;
  animation-delay: 0.8s;
  font-size: 10px;
}

.snowflake-10 {
  left: 65%;
  animation-duration: 8.8s;
  animation-delay: 1.8s;
  font-size: 11px;
}

.snowflake-11 {
  left: 80%;
  animation-duration: 10.2s;
  animation-delay: 0.6s;
  font-size: 12px;
}

.snowflake-12 {
  left: 95%;
  animation-duration: 9.2s;
  animation-delay: 2.5s;
  font-size: 10px;
}

@keyframes snowfall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100% + 20px)) rotate(360deg);
    opacity: 0;
  }
}

.schedule-notice__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}

.schedule-notice__arrow {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.schedule-notice__arrow svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@media (max-width: 992px) {
  .schedule-notice {
    padding: 10px 18px;
  }

  .schedule-notice__text {
    font-size: 14px;
  }

  .schedule-notice__arrow {
    width: 18px;
    height: 18px;
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  .schedule-notice {
    padding: 10px 15px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    flex-wrap: nowrap;
  }

  .schedule-notice__text {
    font-size: 14px;
    white-space: normal;
    line-height: 1.3;
    word-break: break-word;
    flex-shrink: 0;
  }

  .schedule-notice__arrow {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    flex-shrink: 0;
  }

  .schedule-notice__arrow svg {
    animation: arrow-bounce 2.5s ease-in-out infinite;
  }
}

@media (max-width: 480px) {
  .schedule-notice {
    padding: 8px 12px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .schedule-notice__text {
    font-size: 13px;
    line-height: 1.3;
    word-break: break-word;
    flex-shrink: 0;
    white-space: normal;
  }

  .schedule-notice__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .schedule-notice__arrow svg {
    animation: arrow-bounce 3s ease-in-out infinite;
  }
}

@media (max-width: 360px) {
  .schedule-notice {
    padding: 8px 10px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    flex-wrap: nowrap;
  }

  .schedule-notice__text {
    font-size: 12px;
    line-height: 1.2;
    word-break: break-word;
    flex-shrink: 0;
  }

  .schedule-notice__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
}