/* Full table border */
.desktop-table table {
  border: 2px solid #d0d7e2;
  border-radius: 12px;
  overflow: hidden;
}

/* Inner cell borders */
.desktop-table th,
.desktop-table td {
  border: 1px solid #e2e6ef;
}


/* Modern card styling */
.modern-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #fff;
}

/* Header gradient */
.card-header-modern {
  background: linear-gradient(135deg, #f05c2b, #f7a229);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px;
  text-align: center;
}

/* Table hover animation */
.desktop-table tbody tr {
  transition: all 0.3s ease;
}

.desktop-table tbody tr:hover {
  background: #eef4ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

/* Accordion animation enhancement */
.accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.accordion-button {
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: #e9f2ff;
}

/* Slide + fade animation */
.accordion-collapse {
  transition: all 0.35s ease;
}

/* Responsive switching */
.mobile-accordion {
  display: none;
}

@media (max-width: 768px) {
  .desktop-table {
    display: none;
  }
  .mobile-accordion {
    display: block;
  }
  .info-card {
      padding: 20px;
      border-radius: 22px;
    }

    .info-title {
      font-size: 20px;
    }
    
    .icon-list li {
      font-size: 15px;
    }
}

.info-card {
    background: #ffffff;
    border: 2px dashed #f26a21;
    border-radius: 30px;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    /*box-shadow: 0 10px 25px rgba(0,0,0,0.08);*/
    transition: all 0.35s ease;
  }

  .info-title {
    text-align: center;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 25px;
  }

  .icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .icon-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
  }

  .icon-list i {
    color: #f26a21;
    font-size: 22px;
    margin-top: 3px;
    flex-shrink: 0;
  }
  
.chart-card {
    background:#fff;
    width:100%;
    max-width:900px;
    padding:40px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid #f05c2b;
    margin-bottom:30px;
}

.chart-title {
    font-size:24px;
    font-weight:700;
    color:#333;
    margin-bottom:30px;
}

.chart-title span {
    font-weight:400;
    color:#777;
}

.chart-wrapper {
    position:relative;
}

.chart-row {
    margin-bottom:28px;
}

.label {
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

.bar-container {
    position:relative;
    background:#e9edf3;
    height:16px;
    border-radius:10px;
    overflow:visible;
}

.bar {
    height:100%;
    border-radius:10px;
    background:linear-gradient(90deg, #f05c2b, #ad2627);
    width:0;
    animation: growBar 1.6s ease forwards;
}

.percentage {
    position:absolute;
    top:-9px;
    right:-20px;
    background:#fff;
    border:2px solid #ad2627;
    color:#f05c2b;
    font-weight:600;
    font-size:13px;
    padding:5px 10px;
    border-radius:20px;
    box-shadow:0 5px 10px rgba(0,0,0,0.08);
}

.scale {
    margin-top:30px;
    display:flex;
    justify-content:space-between;
    font-size:13px;
    font-weight:600;
    color:#666;
    position:relative;
}

.scale::before {
    content:'';
    position:absolute;
    top:-8px;
    left:0;
    right:0;
    height:6px;
    background:transparent;
    border-top:2px solid #ddd;
}

@keyframes growBar {
    from{width:0;}
}

@media(max-width:600px) {
    .chart-card{
        padding:25px;
    }
    .chart-title{
        font-size:20px;
    }
}
