body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
}

/* Sidebar */
.sidebar {
    height: 100%;
    width: 200px;
    position: fixed;
    background-color: #fff;
    border-right: 1px solid #ddd;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
}

.sidebar h2 {
    font-size: 22px;
    margin-bottom: 30px;
}

.sidebar a {
    display: block;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    }

.sidebar a.active,
.sidebar a:hover {
    background-color: #007bff;
    color: white;
}

/* Main Content */
.content {
    margin-left: 220px;
    padding: 40px 20px;
}

/* Google Docs Style */
.doc-style {
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Profile Image */
.profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Resume Section */
.resume-section {
    margin-top: 40px;
}

.resume-section h3 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
    margin-top: 30px;
}

#greetingMessage {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

#greetingMessage .close-btn {
    color: red;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    }

.social-icon {
    font-size: 24px; /* Adjust the size of the icons */
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff; /* Change color when hovered */
}

.about-me-section {
    margin-top: 30px;
}

.about-me-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}
  
.about-me-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify; /* <- this justifies the text */
}

/* Emoji Feedback Section */
.emoji-feedback h4 {
    margin-bottom: 15px;
}

.emoji-buttons {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}

.emoji {
    transition: transform 0.2s;
}

.emoji:hover {
    transform: scale(1.2);
}

#emojiComments {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #444;
}

.accordion {
    margin-top: 2rem;
  }
  
  .accordion-btn {
    background-color: #f1f1f1;
    border: none;
    outline: none;
    padding: 10px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .accordion-btn:hover {
    background-color: #ddd;
  }
  
  .accordion-content {
    display: none;
    padding: 10px 15px;
    border-left: 4px solid #ccc;
    background-color: #fafafa;
    margin-bottom: 10px;
  }

  h1 {
    text-align: center;
  }
  
  .colorize {
    text-align: justify;
  }
  
  .footer-note {
    text-align: center;
    margin-top: 50px;
    color: #555;
  }

  form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  form button {
    width: 150px;
    padding: 0.6rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: not-allowed;
  }
  
  form button.enabled {
    background-color: #28a745;
    cursor: pointer;
  }
  
  #gameSection {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #snakeCanvas {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    touch-action: none;
  }
  
  #controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    gap: 0.5rem;
  }
  
  .control-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .control-btn {
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .control-btn:active {
    background-color: #bdbdbd;
  }
    