* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

nav{
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
  background-color: #EEEEEE;
}

.logo{
  padding: 7px 10px;
  width: 200px;
}

.logo > img{
  width: 100%;
}


.logo-profile{
  margin-right: -25px;
  width: 50px;
  z-index: 1;
}

.logo-profile > img{
  width: 100%;
}

.profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.account {
  /* background-color: #4CAF50; */
  color: black;
  padding: 11px 14px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  background-color: #D9D9D9;

}

.account:hover {
  background-color: #b8b8b8;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  width: 135px;
  display: none;
  position: absolute;
  top: 45px;
  background-color: #D9D9D9;
}

.dropdown-content > a.logout-btn {
  font-size: 13px;
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content{
  background-color: #D9D9D9;
  border-radius: 5px; 
}

.dropdown-content > a:hover {
  background-color: #cdcdcd;
  border-radius: 5px
}

.show {
  display: block;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #0573F0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.menu > a{
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 50px;
}

.menu > a:hover{
  background-color: white;
  color: black;
}

.head{
  font-weight: 600;
  text-align: center;
}

hr{
  margin: auto;
  width: 250px;
}

.header{
  margin: 30px 0px 30px 0px;
}

.header > h1{
  text-align: center;
  font-size: 35px;
}

/* results */

.results{
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.results > a{
  font-size: 20px;
}

.result{
  display: flex;
  flex-direction: column;
}

.copy > p{
  display: flex;
  width: 450px;
  height: 45px;
  padding: 4px 15px;
  font-size: 18px;
  font-weight: 300;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #c3c3c3;
  overflow: auto;
  white-space: nowrap;
  background-color: #e0e0e0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.copy{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.copy > button{
  display: inline-block;
  width: 7rem;
  outline: 0;
  border: none;
  margin-left: 10px;
  box-shadow: none;
  cursor: pointer;
  padding: 4px 6px;
  font-size: 18px;
  height: 2.5rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: normal;
  background: linear-gradient(90deg,#5522fa 0,#0074e4 100%);
  border-radius: 50px;
  transition: color .2s ease,background-color .2s ease,box-shadow .2s ease;

}

.copy > button:hover{
  box-shadow: 0 0 0 0.15rem #5ceace;
}

.details-url{
  margin-bottom: 20px;
}

.details-url > p{
  font-size: 14px;
 padding: 5px 35px;
 color: #4F5751;
}

#p1{
  font-size: 14px;
  height: 42px;
}

/* For WebKit browsers (Chrome, Safari) */
#p1::-webkit-scrollbar {
  height: 12px; /* Adjust the height of the horizontal scrollbar */
}

#p1::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#p1::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

#p1::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* For Firefox */
#p1 {
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #888 #f1f1f1; /* thumb and track color */
}


/* ///////////////////////////////////////////////// */


/* Employee page */
#EmployeeID{
    width: 750px;
    align-items: center;
    height: auto;
    margin: auto;
    padding: 10px;
    box-sizing: border-box;
}

#EmployeeID > .form {
  background-color: #F9F9F9;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.input-field{
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(50% - 20px); /* Each input field will take up half the container's width minus margin */
  margin: 10px;
  box-sizing: border-box; 
  gap: 10px;
}

.input-field > label{
  font-size: 17px;
}

.form > .input-field > input {
  border: none;
  width: 100%;
  height: 40px;
  margin: 0;
  text-align: left;
  padding-left: 10px;
  border: 1px solid #676767;
  border-radius: 10px;
  box-sizing: border-box;
}

.form > button {
  width: 120px;
  height: 40px;
  margin: 10px;
  border: none;
  background-color: #0573F0;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

/* Transcription Page */

#TranscriptCredential{
  margin-top: 30px;
  text-align: center;
}

.div-trancript > button{
  width: 220px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(128, 128, 128, 0.619);
  font-size: 18px;
  font-weight: 500;
  background-color: #0573F0;
  color: white;

}

.div-trancript > button:hover{
  transition: 0.5s;
  background-color: #4597f5;
}

.div-trancript > button:active{
  background-color: #2e8efc;
}

.div-trancript{
  background-color: #f9f9f9cf;
  width: 600px;
  padding: 50px 70px;
  display:block;
  margin:0 auto;
}


/* ///////////////////////////////////////////////// */

/* UniversityCredential */

#UniversityCredential{
  margin-top: 30px; 
  width: 400px;
  height: 200px; 
  background-color: #F9F9F9;  
  margin: 30px auto auto auto;
  border-radius: 15px;
}

.input-fields{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  height: 130px; 
  gap: 10px;
  margin: auto;
}

.input-fields > label{
  text-align: left;
}

.input-fields > input{
  width: 250px;
  height: 30px;
  padding-left: 10px;
  border-radius: 7px;
  border: 1px solid gray;
}

.btn-uni{
  display: flex;
  justify-content: center;
}

.btn-uni > button{
  color: white;
  background-color: #0573F0;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid gray;
  font-size: 15px;
  font-weight: 500;
}

/* ///////////////////////////////////////////////// */

/* OpenBadgeCredential */


#OpenBadgeCredential {
  margin-top: 30px;
  text-align: center;
}

#OpenBadgeCredential > button{
  width: 220px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid gray;
  font-size: 18px;
  font-weight: 500;
  background-color: #0573F0;
  color: white;
  margin-bottom: 25px;
}

#OpenBadgeCredential > button:hover{
  transition: 0.5s;
  background-color: #4597f5;
}

#OpenBadgeCredential > button:active{
  background-color: #2e8efc;
}

