    input[type="file"] {
  position: relative;
}
a{
    color: #0000ee;
}
p{
    color: #000000;
}
input[type="file"]::file-selector-button {
  width: 136px;
  color: transparent;
}
#back{
    display: none;
}
/* Faked label styles and icon */
input[type="file"]::before {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 16px;
  height: 20px;
  width: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
}
.album{
    width: 200px; 
    border: 1px solid #ccc; 
    padding: 10px; 
    text-align: center;
}
input[type="file"]::after {
  position: absolute;
  pointer-events: none;
  top: 11px;
  left: 40px;
  color: #0964b0;
  content: "Upload File";
}

/* ------- From Step 1 ------- */

/* file upload button */
input[type="file"]::file-selector-button {
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-right: 16px;
  transition: background-color 200ms;
}

/* file upload button hover state */
input[type="file"]::file-selector-button:hover {
  background-color: #f3f4f6;
}

/* file upload button active state */
input[type="file"]::file-selector-button:active {
  background-color: #e5e7eb;
}

  body {
    margin: 0;
    font-family: Verdana, sans-serif;
    background: #f2f2e4;
    color: #000;
  }
  
  header {
    background: #35806b;
    color: white;
    padding: 10px;
    text-align: center;
    position: relative;
  }
  
  .header-title {
    font-size: 24px;
    font-weight: bold;
    color: ;
  }
  
  nav {
    font-size: 12px;
    margin-top: 5px;
  }
  
  nav a{
	  color: ;
  }

  .school-name {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px;
    color: ;
  }
  
  .container {
      display: flex;
      max-width: 1000px;
      margin: 20px auto;
      gap: 20px;
      align-items: flex-start; /* garante alinhamento ao topo */
    }
  
  .sidebar {
    margin-left: 0px;
    width: 200px;
  }
  
  .quick-search {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .nav-links {
    list-style: none;
    padding: 0;
  }
  
  .nav-links li {
    margin: 5px 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #0000ee;
    font-size: 13px;
  }
  
  .profile {
    flex: 1;
    background: white;
    padding: 15px;
    border: 1px solid #ccc;
  }
  
  .profile h2, h1 {
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  
  .profile-columns {
    display: flex;
    gap: 20px;
  }
  
  .left-panel {
    width: 250px;
  }
  
  .picture img {
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }
  
  .picture button {
    display: block;
    margin: 5px 0;
    padding: 5px;
    width: 100%;
    font-size: 12px;
  }
  
  .box {
    background: #f0f0f0;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    font-size: 12px;
  }
  
  .right-panel {
    flex: 1;
  }
  
  .info-section {
    font-size: 13px;
  }
  
  .info-section a {
    color: #003399;
  }
.friends-box {
  border: 1px solid #ccc;
  background: #f7f7f7;
  padding: 10px;
  margin-top: 10px;
  font-size: 12px;
}

.friends-box h4 {
  margin-top: 0;
  font-size: 13px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.friend img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #999;
  display: block;
  margin: 0 auto 5px;
}

.friend span {
  display: block;
  font-size: 11px;
  color: #333;
}

.edit-form {
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 13px;
  }
  
  .edit-form .form-group {
    margin-bottom: 15px;
  }
  
  .edit-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .edit-form input[type="text"],
  .edit-form input[type="email"],
  .edit-form input[type="date"],
  .edit-form select,
  .edit-form .content-div {
    width: 100%;
    padding: 5px;
    font-size: 13px;
    border: 1px solid #999;
    background: white;
  }
  
  .edit-form .content-div{
    resize: vertical;
    height: 60px;
  }
  
  .form-actions {
    text-align: right;
  }
  
  .form-actions button {
    background: #35806b;
    color: white;
    padding: 6px 12px;
    border: none;
    font-size: 13px;
    cursor: pointer;
  }
  
  .form-actions button:hover {
    background: #2e4a85;
  }
  .feed {
    padding: 15px 280px 15px 15px;
    font-size: 13px;
  }
  
  .feed h2 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
  }
  
  .post {
    background: #f7f7f7;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px; 
	width: 600px;
  }
  
  .post-header {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
  }
  
  .post-content {
    font-size: 13px;
    color: #222;
  }

   /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 60%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 
.tabs a {
    padding: 8px;
    text-decoration: none;
    color: #000000;
}
.tabs .active-tab {
    font-weight: bold;
    text-decoration: underline;
}
.post-content img{
    width: 560px;
}
.pagination {
  margin-top: 20px;
  text-align: center;
}
.pagination a {
  margin: 0 10px;
  padding: 5px 10px;
  background: #eee;
  text-decoration: none;
  border-radius: 5px;
}
.pagination a:hover {
  background: #ddd;
}
/* Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.picture img:hover {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.form-group textarea{
    width: 350px;
    height: 100px;
}

.sidebar {
  width: 200px;
  flex-shrink: 0;
}

.feed {
  flex: 1;
  padding: 0 20px;
}

.suggestions {
  width: 250px;
  background-color: white;
  padding: 10px;
  border: 1px solid #ccc;
  position: relative;
}
