
body {
  margin: 20px;
  font-family: "sans-serif";
  color: black;
  background: none;
  line-height: 1.5;
}

.page, .pageHeader, .pageContent, .pageLeftPanel, .pageRightPanel, .pageFooter {
  width: 100%;
}

.pageContent, .pageLeftPanel, .pageRightPanel {
  min-height: auto;
}

img {
  max-width: 100%;
}

p {
  font-size: 10pt;
  margin-left: 0;
  margin-right: 0;
}

h1 {
  font-weight: bold;
  font-size: 2em;
}

h2 {
  font-weight: bold;
  font-size: 1.5em;
}

h3 {
  color: #ffdc6b;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-weight: normal;
  font-size: 2em;
}

table {
  font-size: 20pt;
  margin-left: 10pt;
  margin-right: 10pt;
}


.friends-table img {
  width: 50px;
  height: 50px;
  border-radius: 12px; 
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
  transition: transform 0.2s ease;
}

.friends-table img:hover {
  transform: scale(1.1); 
}

.friends-table {
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 15px; 
  border: none;         
}


body.homepage {
  background-color: #6bb5ff;
  background-image: url('images/scallop.jpg');
  color: white;
}

.welcome-heading {
  color: #FDD845;
  font-size: 36px;
  font-family: 'Times New Roman';
}

.table {
  margin-top: 20px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.button-container {
  margin-top: 10px;
}

.friends-table {
  margin-top: 20px;
}

.fortune-container {
  margin-top: 40px;
}

.copyright-text {
  color: red;
  font-size: 12px;
  font-family: Arial;
}


.btn, .dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: 5px;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}


#homeButton {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 12px 20px;
  font-size: 16px;
  background-color: #3498DB;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#homeButton:hover {
  background-color: #2980B9;
}


body.drawpage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
  background-color: rgb(82, 0, 82);
  margin: 0;
  padding: 0;
}

body.drawpage canvas {
  margin-bottom: 20px;
}

body.sorryPage {
  background-color: #6bb5ff;
  color: white;
  text-align: center;
}

.sorryPage h2 {
  color: #FDD845;
  font-size: 36px;
  font-family: 'Times New Roman', serif;
}

.sorryPage p {
  font-size: 16px;
}

.sorryPage img {
  border-radius: 8px;
  margin-top: 20px;
}

.sorryPage hr {
  border-color: #FDD845;
  width: 90%;
}


.square-img {
  width: 75px;   
  height: 75px;  
  object-fit: cover;
  border-radius: 8px;
}

.center-img {
  width: 300px;  
  height: 175px; 
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.class-table {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  border: 4px black;    
  border-radius: 12px;         
  border-collapse: separate;   
  border-spacing: 0;           
  overflow: hidden;           
}

.class-table td {
  padding: 10px;
}

.class-table img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}


.clock-text {
  color: white;
  font-family: Arial, sans-serif;
  font-size: 20px;
  margin-top: 10px;
}


