@charset "UTF-8";
.case-container {
  margin: 0 auto;
  box-sizing: border-box;
}
.case-container > * {
  box-sizing: border-box;
}
.case-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}
.case-main-title {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .case-main-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .case-main-title {
    font-size: 24px;
  }
}
.case-badge {
  display: inline-block;
  background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}
.case-description {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .case-description {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .case-description {
    font-size: 16px;
  }
}
.case-highlight {
  color: #0891b2;
}
.case-detail-card {
  background: white;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
@media (max-width: 768px) {
  .case-detail-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
}
.case-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .case-info-table {
    display: none;
  }
}
.case-info-table thead {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.case-info-table th {
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #555;
  border-bottom: 2px solid #dee2e6;
}
.case-info-table th:first-child {
  border-top-left-radius: 12px;
}
.case-info-table th:last-child {
  border-top-right-radius: 12px;
}
.case-info-table tbody tr {
  transition: all 0.3s ease;
}
.case-info-table tbody tr:hover {
  background: #f8f9fa;
  transform: scale(1.01);
}
.case-info-table tbody tr:last-child td {
  border-bottom: none;
}
.case-info-table td {
  padding: 24px;
  text-align: center;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #f1f3f5;
  font-weight: 600;
}
.case-label-cell {
  background: #f8f9fa;
  color: #666;
  font-weight: 600;
  width: 15%;
}
.case-value-cell {
  font-weight: 700;
  color: #1a1a1a;
}
.case-highlight-value {
  color: #0891b2;
  font-size: 18px;
}
.case-relief-value {
  color: #ef4444;
  font-size: 20px;
  font-weight: 800;
}
.case-percentage-value {
  color: #ef4444;
  font-size: 24px;
  font-weight: 900;
}
/* 모바일 테이블 스타일 */
.case-mobile-table {
  display: none;
}
@media (max-width: 768px) {
  .case-mobile-table {
    display: block;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
  }
}
.case-mobile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e9ecef;
  background: white;
}
.case-mobile-row:last-child {
  border-bottom: none;
}
.case-mobile-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 16px;
  background: #f8f9fa;
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}
.case-mobile-value {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  padding: 16px;
  border-bottom: 1px solid #e9ecef;
}
.case-mobile-value.case-highlight {
  color: #0891b2;
  font-weight: 700;
}
.case-mobile-value.case-relief {
  color: #ef4444;
  font-weight: 800;
  font-size: 17px;
}
.case-section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #dee2e6, transparent);
  margin: 30px 0;
}
.case-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .case-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .case-stats-grid {
    grid-template-columns: 1fr;
  }
}
.case-stat-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.case-stat-card:hover {
  transform: translateY(-5px);
  border-color: #0891b2;
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.15);
}
@media (max-width: 768px) {
  .case-stat-card {
    padding: 20px 16px;
  }
}
.case-stat-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .case-stat-label {
    font-size: 13px;
  }
}
.case-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
}
.case-stat-value.case-primary {
  color: #0891b2;
}
.case-stat-value.case-danger {
  color: #ef4444;
}
@media (max-width: 768px) {
  .case-stat-value {
    font-size: 22px;
  }
}
.case-assistance-section {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid #e9ecef;
  animation: fadeInUp 0.8s ease 0.5s both;
}
@media (max-width: 768px) {
  .case-assistance-section {
    padding: 24px 16px;
    margin-top: 30px;
  }
}
.case-assistance-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .case-assistance-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.case-assistance-icon {
  font-size: 36px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
@media (max-width: 768px) {
  .case-assistance-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}
.case-assistance-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .case-assistance-title {
    font-size: 20px;
  }
}
.case-assistance-content {
  font-size: 20px;
  line-height: 1.8;
  color: #2d3748;
  font-weight: 500;
  padding-top: 24px;
  border-top: 1px dashed #e2e8f0;
  word-break: keep-all;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .case-assistance-content {
    font-size: 17px;
    line-height: 1.6;
    padding-top: 20px;
  }
}
.case-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #666;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.case-back-button:hover {
  background: #f8f9fa;
  transform: translateX(-5px);
}
@media (max-width: 768px) {
  .case-back-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.case-admin-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}
@media (max-width: 768px) {
  .case-admin-actions {
    flex-direction: column;
    margin-top: 20px;
    padding-top: 20px;
  }
}
.case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
@media (max-width: 768px) {
  .case-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
}
.case-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.case-btn-modify {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  color: white;
}
.case-btn-modify:hover {
  background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
}
.case-btn-delete {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}
.case-btn-delete:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}
/*# sourceMappingURL=474770203d63f5ee1da664fc158f78deaf1ee743._read.scss.map */
