/* GPA Calculator Plugin Styles */
.gpa-header {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  color: #212189;
}

.credit-text,.grade-text,.course-name {
  
  font-weight: bold;
  color: #292929;
 
}



.gpa-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}

.gpa-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #000;
  margin-top: -10px;
}

/* Main Content Layout - Two Columns */
.gpa-main-content {
  display: flex;
flex-direction: row;  gap: 40px;
  align-items: start;
}

/* Left Column: Semesters */
.gpa-semesters-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1089px;
}

/* Right Column: GPA Display */
.gpa-display-column {
  position: sticky;
  top: 20px;
  height: fit-content;
  width: 524px;
}

.gpa-display {
  background: #fff !important;
  box-shadow: 12px 11px 50px 19px #bcd5ff40;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

/* Stacked Semester Layout */
.gpa-semesters-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #FFF;
  box-shadow: 12px 11px 50px 19px #bcd5ff40;
  border-radius: 20px;
}

.gpa-semester-stack-item {
  background-color: rgba(250, 252, 254, 1);
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
  
}

.gpa-semester-header {
 padding: 15px 25px;
border-bottom: 2px solid #cde6ff;
border-top-left-radius: 20px;
border-top-right-radius: 20px;

}

.gpa-semester-title {
  display: flex;
  justify-content: space-between;
  align-items: center;


}

.semester-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #212189;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.semester-name:hover {
  background: transparent !important;
}

.gpa-semester-actions {
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gpa-semester-stack-item:hover .gpa-semester-actions {
  opacity: 1;
}

.gpa-btn-edit,
.gpa-btn-delete {
  background: transparent;
  border: 1px solid #212189;
  color: #212189;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gpa-btn-edit:hover {
  background: #212189;
  color: white;
}

.gpa-btn-delete:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
}

/* Semester Content */
.gpa-semester-content {
 
  padding: 20px;
  border-radius: 0 0 20px 20px
}

/* Course Header Grid with Clear All */
.gpa-course-header-grid {
  display: flex;  
  font-weight: 600;
  color: #374151;
  align-items: center;
  justify-content: space-between;
  width: 100%;
 
}

/* Clear All Button */
.gpa-clear-all {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 14px;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
  white-space: nowrap;
}

.gpa-clear-all:hover {
  background: #dc2626;
  color: white;
}

/* Course Rows */
.gpa-course-row {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
}

.gpa-course-row-input {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  background: transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 94% !important;
}
.gpa-course-row-input .gpa-form-control{
  width: calc(33.33% - 10px);
}

.gpa-course-header-grid .gpa-course-main-headerTitle{
     display: flex;
    gap: 15px;
    padding: 15px 0;
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 90% ;

}

.gpa-course-header-grid .gpa-course-main-clearall{
  width: 10%;
}

.gpa-course-header-grid .gpa-course-main-headerTitle .lable{
    width: calc(33.33% - 10px);
    padding-left: 20px;

}
.gpa-course-main-clearall .gpa-btn.gpa-btn-danger.gpa-clear-all{
  padding: 14px 0;
}
.gpa-course-row-input:hover {
 background: transparent;
 
  
}

.gpa-delete-btn {
  display: flex ;
  justify-content: center ;
  align-items: center ;
  flex-direction: column;
  width: 6% !important;
}

/* Form Controls */
.gpa-form-control {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.gpa-form-control:focus {
  outline: none;
  border-color: #4c63d2;
  box-shadow: 0 0 0 3px rgba(76, 99, 210, 0.1);
}

/* Buttons */
.gpa-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.gpa-btn-primary {
  background: #212189;
  color: #fff;
}

.gpa-btn-primary:hover {
  background: #3730a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 99, 210, 0.3);
}

.gpa-btn-secondary {
  background: #ffffff;
  color: #212189;
  border: 1px solid #212189;
}

.gpa-btn-secondary:hover {
  background-color: #212189;
  color: #fff;
}

.gpa-btn-danger {
  background: #fff;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
}

.gpa-btn-danger:hover {
  background: #fff;
}

.gpa-btn-add {
  background: #ffffff;
  color: #212189;
  margin: 20px 0;
  border: 1px solid #212189;
}

.gpa-btn-add:hover,
.gpa-btn-add:focus {
  background-color: #212189;
  color: #fff;
}

/* Bottom Controls */
.gpa-controls-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
  flex-wrap: wrap;
  margin-left: 30px;
}

.gpa-calculate-btn {
  background: #212189;
  color: white;
  padding: 15px 40px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  font-weight: 400;
}

.gpa-calculate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 99, 210, 0.4);
  background: #fff !important;
  color: #212189;
  border: 1px solid #212189;
}

.gpa-calculate-btn:focus {
  background: transparent;
  color: #212189; /* optional: taake text dikhai de */
  border: 2px solid #212189; /* optional: focus visible banane ke liye */
  outline: none; /* default outline hatane ke liye */
}

button.gpa-btn.gpa-btn-secondary:focus {
  background: transparent !important;
  color: #212189;   /* optional: text visible rakhne ke liye */
  border: 2px solid #212189; /* optional: border add karne ke liye */
  outline: none;    /* default outline hatane ke liye */
}


/* GPA Display Styles */
.gpa-score {
  font-size: 80px !important;
  font-weight: 600;
  color: #fe4a55;
  /* margin: 20px 0; */
  display: flex;

}

.gpa-score.good {
  color: #10b981;
}

.gpa-score.average {
  color: #f59e0b;
}

.gpa-grading-scale {
  width: 100%;
  margin-top: 30px;
}


.gpa-scale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.gpa-scale-header h3 {
  color: #374151;
  margin: 0;
}

.gpa-edit-criteria-btn {
  background: #212189;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gpa-edit-criteria-btn:hover {
  background: #3730a3;
  transform: translateY(-2px);
}

.gpa-scale-table th {
  background: #fff;
  color: #212189;
  font-size: 18px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
}

.gpa-scale-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}

.gpa-scale-table tr:last-child td {
  border-bottom: none;
}

/*.gpa-scale-table tr:nth-child(even) {*/
/*  background: #f9fafb;*/
/*}*/

.gpa-scale-table tr,
.gpa-scale-table tr:hover,
table tbody tr:hover>td, table tbody tr:hover>th,
table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background: #fff !important;
    background-color: #fff !important;

}

/* Alerts */
.gpa-alert {
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  font-weight: 500;
}

.gpa-alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.gpa-alert-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* Modal Styles (keep existing modal styles) */
.gpa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gpa-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gpa-modal-content {
  background: white;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gpa-modal-header {
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

h3.gpa-edit-grading-title .elementor-kit-6 h3 {
  font-size: 20px;
  font-weight: 600;
  color: #212189; /* example color */
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gpa-main-content {
   flex-direction: column-reverse;
    gap: 30px;
    padding: 10px;
  }

  .gpa-semesters-column,
  .gpa-display-column {
    width: 100% !important;
  }
  .gpa-display-column {
    position: static;
    order: -1; /* GPA Display top me */
  }
}


.gpa-criteria-grade{
  font-size: 12px;
}
.gpa-criteria-row .gpa-criteria-grade, 
.gpa-criteria-row .gpa-form-control, 
.gpa-criteria-row .gpa-criteria-range .gpa-form-control{
    font-size: 12px !important;

}

.gpa-delete-btn .gpa-btn.gpa-btn-danger{

         font-size: 11px;
        padding: 10px 10px;
}

.gpa-scale-table {
    font-size: 12px;
  }

  .gpa-scale-table th,
  .gpa-scale-table td {
    padding: 8px 4px;
    font-size: 12px;
  }

  .gpa-scale-table th:nth-child(1),
  .gpa-scale-table td:nth-child(1) {
    padding-left: 8px;
  }


  .semester-edit-mode {
    flex-direction: column;
    gap: 8px;
  }

  .semester-edit-input {
    width: 100%;
  }

  .gpa-btn-check,
  .gpa-btn-cancel {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 6px;
    z-index: 10;
    border-radius: 100% !important;
    padding: 6px !important;
    line-height: 1em !important;
  }
  .gpa-btn-check{
    right: 50px;
   
  }

  .gpa-btn-cancel{
    right: 10px;
  }




  .gpa-edit-grading-title {
    font-size: 18px;
    text-align: center;
  }


.gpa-modal-header .gpa-edit-grading-title {
  margin: 0;
  color: #212189;
  font-size: 1.3rem;
  font-weight: 600;
}

.gpa-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gpa-modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.gpa-modal-body {
  padding: 25px 30px;
}

.gpa-modal-body p {
  color: #292929;
  margin-bottom: 20px;
  line-height: 1.6;
}

.gpa-criteria-header {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #212189;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
  font-size: 15px;
}

.gpa-criteria-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.gpa-criteria-grade {
  font-weight: 600;
  color: #4c63d2;
  background: #f8fafc;
  padding: 10px;
  border-radius: 6px;
  text-align: left;
}

.gpa-criteria-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gpa-criteria-range input {
  flex: 1;
}

.gpa-criteria-range span {
  color: #6b7280;
  font-weight: 500;
}

.gpa-modal-footer {
  padding: 20px 30px 25px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}



/* input#gpa-input-A\+ ,.gpa-form-control,.gpa-form-control{
  font-size: 12px !important;
} */

/* mobile query responsive end */


/* Large screens adjustment  */
@media (min-width: 1440px) {
  .gpa-main-content {
    margin: 0 auto;
    
    gap: 30px;
    padding: 10px;
   
  }
}
 .gpa-semesters-column {
    width: 65%;
  }
  .gpa-display-column {
    width: 35%;
  }
@media (min-width: 1025px) and (max-width: 1439px) {
   .gpa-semesters-column {
    width: 60%;
  }
  .gpa-display-column {
    width: 40%;
  }
  .gpa-calculator-container{
    padding: 20px;
  }
  .calculator-paragraph{
    font-size: 18px !important;
  }

  .calculalor-title{
    font-size: 45px !important;
  }
}



/* Fix for semester actions - always show on first semester */
.gpa-semester-actions {
  display: flex;
  gap: 8px;
  opacity: 1; /* Changed from 0 to 1 to always show */
}

.gpa-semester-stack-item:hover .gpa-semester-actions {
  opacity: 1; /* Keep this for consistency */
}

/* Hide delete button when only one semester exists */
.gpa-btn-delete[style*='display: none'] {
  display: none !important;
}

/* Edit Criteria Link Style */
.gpa-edit-criteria-link {
  background: none;
  border: none;
  color: #0052F5;
  text-decoration: underline;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  padding: 5px 0;
  display: inline-block;
  transition: color 0.3s ease;
}
.gpa-edit-criteria-link:active,
.gpa-edit-criteria-link:focus,
.gpa-edit-criteria-link:hover {
  color: #3730a3;
  background: transparent;
  text-decoration: underline;
}

/* Updated scale table for 4 columns */
.gpa-scale-table {
  width: 100%;
  background: white;
  overflow: hidden;
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);*/
  border: 1px solid rgba(217, 217, 217, 1);
  margin-bottom: 10px;
  border-spacing: 0px;
  border-collapse: collapse; /* avoids double borders */
}

.gpa-scale-table th {
  background: #fff;
  color: #212189;
  font-size: 16px;
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  /*border-bottom: 2px solid #212189;*/
}

.gpa-scale-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(217, 217, 217, 1);
  font-size: 14px;
}

.gpa-scale-table tr:last-child td {
  border-bottom: none;
}
.gpa-scale-table th{
      border-bottom: 1px solid rgba(217, 217, 217, 1);

}
/*.gpa-scale-table tr th,*/
/*.gpa-scale-table tr td{*/
/*    border: 1px solid #303030;*/
/*}*/
/*.gpa-scale-table tr:nth-child(even) {*/
/*  background: #f9fafb;*/
/*}*/

.gpa-scale-table th:nth-child(-n+2),
.gpa-scale-table td:nth-child(-n+2) {
  border-right: 1px solid rgba(217, 217, 217, 1); /* right border for first 2 columns */
  border-bottom: 1px solid rgba(217, 217, 217, 1); /* bottom border */
}

/* Remove bottom border from last row */
.gpa-scale-table tr:last-child td:nth-child(-n+2) {
  border-bottom: none;
}

/* Ensure proper column spacing for 4 columns */
.gpa-scale-table th:nth-child(1),
.gpa-scale-table td:nth-child(1) {
  width: 20%; /* Grade column */
  text-align: left;
  padding-left: 15px;
}

.gpa-scale-table th:nth-child(2),
.gpa-scale-table td:nth-child(2) {
  width: 20%; /* GPA column */
}

.gpa-scale-table th:nth-child(3),
.gpa-scale-table td:nth-child(3) {
  width: 30%; /* Percentage Range column */
}

.gpa-scale-table th:nth-child(4),
.gpa-scale-table td:nth-child(4) {
  width: 30%; /* Midpoint column */
}

/* Mobile responsiveness for table
@media (max-width: 768px) {
  .gpa-scale-table {
    font-size: 12px;
  }

  .gpa-scale-table th,
  .gpa-scale-table td {
    padding: 8px 4px;
    font-size: 12px;
  }

  .gpa-scale-table th:nth-child(1),
  .gpa-scale-table td:nth-child(1) {
    padding-left: 8px;
  }
} */
/* Inline Semester Editing Styles */
.semester-edit-mode {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}

.semester-edit-input {
  flex: 1;
  padding: 8px 12px;
  border: 2px solid #212189;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #212189;
  background: white;
}

.semester-edit-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 33, 137, 0.1);
}

.gpa-btn-check {
  background: #065f46;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gpa-btn-check:hover {
  background: #FE4A55;
  transform: scale(1.05);
}

.gpa-btn-cancel {
  background: #FE4A55;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gpa-btn-cancel:hover {
  background: #FE4A55;
  transform: scale(1.05);
}
button.gpa-btn.gpa-btn-danger.gpa-clear-all{
  color: #FE4A55;
  background-color: transparent !important;
  font-weight: 400;
}
button.gpa-btn.gpa-btn-danger.gpa-clear-all:focus {
  background-color: transparent !important;
  outline: none; /* optional: border outline remove karne ke liye */
}
/* Ensure semester title area has proper spacing */
.gpa-semester-title {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.gpa-semester-title:hover{
  background: transparent;
}
.semester-name {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 700;
  color: #212189;
}

.semester-name:hover {
  background: transparent
}


 

/* Responsive design for edit mode
@media (max-width: 768px) {
  .gpa-course-row{
  flex-direction: column;
}
  .semester-edit-mode {
    flex-direction: column;
    gap: 8px;
  }

  .semester-edit-input {
    width: 100%;
  }

  .gpa-btn-check,
  .gpa-btn-cancel {
    display: flex;
    width: 12%;
    justify-content: center;
    position: absolute;
    top: 10px;
    z-index: 10;
    border-radius: 100%;
    padding: 6px !important;
    line-height: 1em !important;
  }
  .gpa-btn-check{
    right: 50px;
  }

  .gpa-btn-cancel{
    right: 0px;
  }

  .gpa-course-main-headerTitle{
    display: none !important;

  }
  .gpa-course-header-grid .gpa-course-main-clearall{
    width: 100%;
    justify-content: flex-end !important;
    display: flex;
  }
  


} */
.gpa-contorls-total{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gpa-title {
  font-size: 24px !important;
  font-weight: 600;
  color: #212189;
  text-align: left;
  margin-bottom: 0px;
  line-height: 0px!important;
  padding-top:10px!important;
}

button.gpa-btn.gpa-btn-primary:focus {
  background: transparent !important;
  color: #212189;   /* optional: taake text clear rahe */
  border: 2px solid #212189; /* optional: border visible rahe */
  outline: none;    /* browser ka default outline hatane ke liye */
}
/* Add to your existing CSS */
.gpa-btn-danger:disabled {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    border-color: #d1d5db !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

.gpa-btn-danger:disabled:hover {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    border-color: #d1d5db !important;
    transform: none !important;
}

.gpa-btn-danger:disabled img {
    opacity: 0.5;
}
@media (max-width: 480px) {
  .semester-name {
    font-size: 1rem;
  }
  .gpa-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
  .gpa-course-row-input {
    padding: 10px;
  }
  .gpa-form-control {
    font-size: 14px;
    padding: 8px 12px;
  }
  .credit-text,.grade-text,.course-text{
  display: none;
}
  
}
.cancel-button-modal{
  background: #FE4A55;
  color: #fff;
}

@media screen and (max-width:768px) {
    .gpa-course-main-headerTitle{
    display: none !important;

  }
  .gpa-course-row{
  flex-direction: column;
}

.calculalor-title{
  font-size: 60px !important;
  font-weight: 700 !important;
  color: #212189 !important;
  line-height: 1.4em !important;
}

.calculalor-paragraph{
  color: #292929 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}
  
  .gpa-course-header-grid .gpa-course-main-clearall{
    width: 100%;
    justify-content: flex-end !important;
    display: flex;
  }

  .gpa-course-row-input .gpa-form-control{
    width: 100%;
  }

  .gpa-header h1 {
     font-size: 2rem !important;
  }

  

  .gpa-main-content {
    flex-direction: column-reverse;
    padding: 10px;
  }

  .gpa-course-header-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  .gpa-course-row-input {
    display: flex;
    gap: 10px;
    width: 100% !important;
    flex-direction: column;
  }

  .gpa-delete-btn {
    width: 100% !important;
    margin-top: 10px;
    justify-content: flex-end !important;
    align-items: flex-end !important;
  }

  .gpa-controls-bottom {
    gap: 15px;
  }

  .gpa-semester-title {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .gpa-semester-actions {
    opacity: 1; /* Always show on mobile */
  }

  .gpa-score {
    font-size: 3rem;
  }
  .gpa-modal-body {
  padding: 25px 10px !important;
}

.gpa-modal-footer{
  flex-direction: column;
}

.gpa-criteria-row{
 
    grid-template-columns: 50px 80px 1fr !important ;
  
}
}



