
@font-face {
    font-family: "RobotoCondensed";
    src: url(../fonts/RobotoCondensed-Regular.ttf) format('truetype');
}

body {
    font-weight: normal;
    font-family: RobotoCondensed;
    overflow-x: hidden;
}

div.bg {
  background-color: #eeffff;
  border-radius: 12px;
  width: 100%;
  min-height: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

div.school {
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  border: #eeeeee 1px solid;
  display: flex;
  justify-content: flex-end;
}

table.marks {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  border: #eeeeee 1px solid;
}

button {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

img.profile {
  width: 40px; 
  height: 40px; 
  border-radius: 50%
}

button.tab {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

th {
  background-color: #008888;
  color: #ffffff;
  text-transform: uppercase;
}

h1 {
  background-color: #ffffff;
  color: #008888;
  text-align: center;
  text-transform: uppercase;
  padding: 6px 0;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
  border-radius: 6px;
  border: #008888 1px solid;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.3);
  margin: 12px auto;
  width: 80%;
}

h2 {
  color: #008888;
  text-align: center;
  text-transform: uppercase;
  padding: 6px 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
}

button.selected {
  background-color: #00cccc;
  color: #ffffff;
  border: 1px solid #000000;
}

select.country {
	padding: 8px; 
	border: 1px solid #000000; 
	border-radius: 6px; 
	background-color: #00cccc; 
	color: #000000; 
	font-size: 16px;
}

button.action {
  background-color: #00cccc;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 6px;
  height: 30px;
}

button.action:disabled {
  background-color: #cccccc;
  border: 1px solid #666666;
}

button.action:hover {
  background-color: #eeeeee;
  color: #00cccc;
}

button.action:disabled:hover {
  background-color: #cccccc;
  border: 1px solid #666666;
}

button.drive {
  width: 24px; 
  height: 24px;
  padding: 0; 
  border: 1px solid black; 
  background-color: #00cccc; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  border-radius: 3px;
}

button.drive:hover {
  background-color: #ffffff;
}

.error {
  border: 1px solid #ff0000;
  background-color: #ffeeee;
}

.error:focus {
  border: 2px solid #ff0000 !important;
  background-color: #ffeeee !important;
}