.student-view .title-area-exam{
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #091057;
    padding: 10px 10px 10px 10px;
    margin-top: 10px;
    font-weight: 400;
}
.student-view .title-area-exam h5{
    background-color: #091057;
    padding: 10px 10px 13px 10px;
    border-radius: 5px;
    color: #fff;
}
.title-area-exam button {
    padding: 4px 15px;
    background-color: #091057;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.title-area-exam select{
    height: 47px;
    border: 0.1px solid #091057;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.title-area-exam input[type="number"], input[type="date"]{
    height: 47px;
    border: 0.1px solid #091057;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.date-input-group {
    position: relative;
}
.date-input-group input {
    padding-left: 40px; /* space for icon */
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}
.date-input-group input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.2);
}
.date-input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 18px;
}
#question-paper select{
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}
#question-paper input[type="number"], input[type="date"]{
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}
.ck-editor__editable[role="textbox"] {
    min-height: 300px;
}
.ck-content .image {
    /* block images */
    max-width: 80%;
    margin: 20px auto;
}
.question-btn button{
    padding: 4px 15px;
    background-color: #091057;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.edit-marks-btn button{
    padding: 11.5px 15px;
    background-color: #091057;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.student-view .title-area-admit{
    height: auto;
    border-radius: 0px 0px 5px 5px;
    border: 1px solid #091057;
    padding: 10px 5px 10px 5px;
}
.student-view .title-area-admit select{
    height: 47px;
}
.student-view .title-area-admit input[type="text"]{
    height: 47px;
}
.title-area-exam select option{
    text-transform: uppercase;
}
#edit-marks-area{
    display: none;
}
.student-view{
    background-color: #fff;
}
.btn-glow {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border: none;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
    transition: all 0.3s ease;
}
.btn-glow:hover {
    background: linear-gradient(90deg, #00c6ff, #007bff);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.9);
    transform: scale(1.05);
}
.btn-glow:active {
    transform: scale(0.95);
}

.status-badge , .status-badge-danger{
  display: inline-block;
  padding: 1px 14px 1px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #00b894;            /* Green text */
  background-color: #e9fdf2; /* Light green background */
  border-radius: 7px;
  border: 1px solid #a7f3d0; /* Light green border */
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.status-badge:hover {
  background-color: #d1fae5;
  transform: scale(1.05);
}

.custom-badge-exam {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* Edit badge */
.badge-edit {
    background-color: #2e7d32;
    color: #fff;
    border: 1px solid #a5d6a7;
}
.badge-edit:hover {
    background-color: #c8e6c9;
    color: #1b5e20;
    transform: scale(1.05);
}

/* Open PDF badge */
.badge-pdf {
    background-color: #E62727;
    color: #fff;
    border: 1px solid #f8bdbd;
}
.badge-pdf:hover {
    background-color: #ffebee;
    color: #b71c1c;
    transform: scale(1.05);
}
.custom-badge-exam i {
    font-size: 16px;
}
.badge-trash {
  background-color: #EF7722;
  color: #fff;
  border-color: #ffd180;
}
.badge-trash:hover {
  background-color: #fff0cc;
  color: #e65100;
  transform: scale(1.1);
}