#resultChart {
    height: 700px !important;
    width: 700px !important;
    margin: auto !important;
}
.radar-chart {
    background-color: #F2F5F7;
}

.points {
    background-color: #F2F5F7;
}
.card-result { border-radius: 12px; box-shadow: 0 8px 20px rgba(13,38,76,0.08); }
    .question-row { transition: background .12s ease; }
    .question-row:hover { background: rgba(0,0,0,0.02); }
    .badge-points { min-width: 64px; font-weight:600; }
    .correct { color: #0f5132 !important; background: rgba(16,185,129,0.06) !important; border-radius: 8px !important; padding:6px 8px !important; }
    .wrong { color:#842029 !important; background: rgba(248,113,113,0.06) !important; border-radius: 8px !important; padding:6px 8px !important; }
    .muted-small { font-size: .88rem; color: #677189; }
    .result-summary { background: linear-gradient(90deg,#ffffff,#f8fbff); border-radius: 12px; padding: 18px; }
    /* Print styles */
    @media print {
      body { background: white; }
      .no-print { display: none !important; }
      .card-result { box-shadow:none; border: 1px solid #ddd; }
}

.related-course {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.related-course:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.related-course img {
  height: 220px;
  object-fit: cover;
}
.btn-lux {
  background: linear-gradient(135deg, #d4af37, #f9e076);
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-lux:hover {
  background: linear-gradient(135deg, #f9e076, #d4af37);
  color: #000;
  transform: scale(1.05);
}
.card-title {
  color: #1a1a1a;
}

/*
*
* Start application dashboard styles
*
*/

/* header */
.item {
	width: 100%;
	height: 80px;
	background-color: aliceblue;
	padding: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.circle {
	width: 40px;
	height: 40px;
	background-color: orange;
	border-radius: 50%;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}


/* main section */
.main-container {
	padding: 25px;
	line-height: 30px;
	background-color: white;
}
.main-container .big-p {
	font-size: 20px;
	line-height: 50px;
  color: #505D68;
}

.center-box {
	width: 95%;
	margin: 15px auto;
	text-align: center;
	background-color: aliceblue;
}

.center-box p {
	  padding: 10px 0px;
    margin-bottom: 0;
}
.top-box {
	background: #459BDE !important;
  font-size: 16px;
  font-weight: 700;
	padding: 10px;
	width: 95%;
	margin: 0 auto;
	text-align: center;
  color: #FFFFFF;
  display: block;
  border-radius: 4px;
}
.top-box a {
	text-decoration: none;
	color: white;
}

.quiz-passed {
	background: #14A964 !important;
}
.quiz-failed {
	background: #E50000 !important;
}

.ac-item {
	width: 100%;
	border: none;
	border-radius: 8px;
	margin: 10px 0;
	position: relative;
	background-color: #F2F5F7;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: center;
	border-radius: 2px;
    box-shadow: 0px 0px 3px #5F849C3D;
}

.head-layout{
	display: flex;
	align-items: center;
	width: 80%;
	justify-content: space-between;
}
.head-layout .ac-title {
  font-size: 23px;
  line-height: 127%;
  color: #272643 !important;
}
.head-layout  h4 {
  font-size: 20px;
  line-height: 170%;
  color: #272643 !important;
}
.ac-content .text p {
  margin-bottom: 0px;
}
.ac-item h3{
	margin: 20px;
}
.ac-toggle {
	display: none;
}


.ac-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	background: rgb(244, 162, 10);
	color: white;
	padding: 6px 10px;
	border-radius: 50%;
	cursor: pointer;
	margin-right: 15px;
}

.not-enrolled-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	background: rgb(75, 134, 243);
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	margin-right: 15px;
	display: flex;
	justify-self: center;
}

.text{
	margin-left: 20px;
}

.ac-content {
	max-height: 0;
	overflow: hidden;
	transition:all 0.4s ease;
	padding: 0 5px;
}


.ac-toggle:checked ~ .ac-content {
	 max-height: 500px; 
	padding-top: 30px;
}

.center-box .internal-box, .payment-info-box {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.ac-btn {
    cursor: pointer;
    font-size: 24px;
    transition: 0.2s;
}

/* When checkbox is checked → change + to - */
.ac-toggle:checked + .ac-btn {
    content: "-";
	font-size: 40px;
}

.ac-btn::after {
    content: "+";
	font-size: 40px;
}

/* Replace + with - when open */
.ac-toggle:checked + .ac-btn::after {
    content: "-";
	font-size: 40px;
}




/*
*
* End application dashboard styles
*
*/