/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
  }
  
  .tabset .tab-panel {
    display: none;
  }
  
  .tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
  .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
  .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
  .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
  .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
  .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
  }
  
  /*
   Styling
  */
  body {
    font: 16px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
    color: #333;
    font-weight: 300;
  }
  
  .tabset > label {
    position: relative;
    display: inline-block;
    padding: 8px 0px 14px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
    margin-right: 10px;
  }
 
  .tabset > label::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 10px;
    width: 100%;
    height: 2px;
    background: #8d8d8d;
  }
  
  input:focus-visible + label {
    outline: 2px solid #ffc600;
    border-radius: 3px;
  }
  
  .tabset > label:hover,
  .tabset > input:focus + label,
  .tabset > input:checked + label {
    color: #ffc600;
  }
  
  .tabset > label:hover::after,
  .tabset > input:focus + label::after,
  .tabset > input:checked + label::after {
    background: #ffc600;
  }
  
  .tabset > input:checked + label {
    
    margin-bottom: -1px;
  }
  
  .tab-panel {
    padding: 30px 0;
    border-top: 1px solid #ccc;
  }
 .verifi-img-box{
    width: 600px;
    height: 300px;
    position: relative;
 }
 .verifi-img-box > img{
    width: 100%;
    height: 100%;
 }
 .verifi-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 100px 0px;
    border: 0.1px solid #b6b4b4;
    border-radius: 7px;

 }
 .verifi-img-box >h2{
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    text-align: center;
    margin: 20px;
    color: white;
    background: #ac883ede;
 }
 .tabset{
    width: 568px;
    height: 300px;
    padding: 20px;
 }
 .tab-panel input{
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #888;
 }
 #country_select{
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #888;
    margin-bottom: 20px;
 }
 .tab-panel button{
    width: 100%;
    border: none;
    background-color: #07294dad;
    border-radius: 4px;
    padding: 7px;
    color: white;
    cursor: pointer;
    transition: all .3s;
 }
 .tab-panel button:hover{
    background-color: #07294dd1;
 }

 .admit-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 700px;
    margin: auto;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
table {
    width: 100%;
}
table, th, td {
    border: 1px solid #ddd;
    border-collapse: collapse;
}
th, td {
    padding: 10px;
    text-align: left;
}
.profile-img {
    text-align: right;
    margin-bottom: 20px;
}
.profile-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.pro{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}
.enrol img{
    width: 101px;
    position: absolute;
    z-index: 9;
    top: 53px;
    right: 203px;
}

.student-views {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 800px;
    margin: auto;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
label {
    font-weight: bold;
}
input[type="text"] {
    width: calc(100% - 10px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
    background-color: #45a049;
}

.image-preview {
    margin-bottom: 20px;
}
.image-preview img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
}
.upload-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 10px;
    width: 15%;
    transition: background-color 0.3s ease;
    text-align: center;
}
.upload-button:hover {
    background-color: #45a049;
}