/**
 * 公共营养师考务中心 - 考试安排样式文件
 * Copyright (c) 2024-2025 公共营养师考务中心
 * 版权所有，未经授权禁止复制或使用
 * Website: https://jkgls.arkvip.cn
 */

/* 考试安排样式 */
#schedule {
  position: relative;
  overflow: hidden;
}

#schedule .container {
  max-width: 100%;
  padding: 0;
}

#schedule .bg-white {
  background-color: white;
}

#schedule .rounded-2xl {
  border-radius: 1rem;
}

#schedule .shadow-card {
  box-shadow: var(--card-shadow);
}

#schedule .border-primary\/10 {
  border-color: rgba(30, 58, 138, 0.1);
}

#schedule .p-4 {
  padding: 1rem;
}

#schedule .bg-primary\/5 {
  background-color: rgba(30, 58, 138, 0.05);
}

#schedule .text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

#schedule .text-gray-medium {
  color: var(--gray-medium);
}

#schedule .mb-4 {
  margin-bottom: 0.5rem;
}

#schedule .space-y-6 > * + * {
  margin-top: 0.5rem;
}

#schedule .bg-white.rounded-xl {
  background-color: white;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

#schedule .border.border-primary\/10 {
  border: 1px solid rgba(30, 58, 138, 0.1);
}

#schedule .shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

#schedule .font-medium {
  font-weight: 500;
}

#schedule .text-primary {
  color: var(--primary);
}

#schedule .mb-3 {
  margin-bottom: 0.5rem;
}

#schedule .space-y-3 > * + * {
  margin-top: 0.25rem;
}

#schedule .p-3 {
  padding: 0.5rem;
}

#schedule .bg-primary\/5.rounded-lg {
  background-color: rgba(30, 58, 138, 0.05);
  border-radius: 0.5rem;
}

#schedule .text-sm.text-gray-600 {
  font-size: 0.875rem;
  color: #4b5563;
}

#schedule .mb-1 {
  margin-bottom: 0.125rem;
}

#schedule .mt-2 {
  margin-top: 0.25rem;
}

#schedule .px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

#schedule .py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

#schedule .text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

#schedule .font-medium {
  font-weight: 500;
}

#schedule .bg-primary\/10 {
  background-color: rgba(30, 58, 138, 0.1);
}

#schedule .rounded-full {
  border-radius: 9999px;
}

/* 桌面端表格样式 */
#desktop-exam-table {
  width: 100%;
}

#desktop-exam-table th {
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

#desktop-exam-table td {
  padding: 0.5rem 1rem;
  vertical-align: middle;
}

#desktop-exam-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#desktop-exam-table tbody tr:hover {
  background-color: rgba(30, 58, 138, 0.05);
}

/* 移动端适配 */
@media (max-width: 768px) {
  #schedule .hidden.md\:block {
    display: none;
  }
  
  #schedule .block.md\:hidden {
    display: block;
  }
  
  #desktop-exam-table {
    display: none;
  }
}

@media (min-width: 769px) {
  #schedule .block.md\:hidden {
    display: none;
  }
  
  #schedule .hidden.md\:block {
    display: block;
  }
  
  #mobile-exam-list {
    display: none;
  }
}