body {
  margin: 0;
  padding: 60px 20px 80px 20px;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: #111111;
  width: 100%;
}

.green {
  background-color: #359235;
  color: #b9b6b6;
}

.underline {
  text-decoration: underline;
}

.overline {
  border-top: 3px #000 solid;
}

table {
  float: left;
}

td {
  height: 30px;
}

form {
  padding: 20px 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  z-index: 1000;
}
.header #menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
  display: none;
  padding: 5px 10px;
}
.header ul.buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header ul.buttons li.section {
  list-style: none;
  margin-bottom: 0;
  position: relative;
}
.header ul.buttons li.section .section-title {
  cursor: pointer;
  font-weight: 500;
  padding: 4px 8px;
  display: block;
  background: #444;
  border-radius: 3px;
  font-size: 13px;
}
.header ul.buttons li.section .section-title .expand-arrow {
  font-size: 0.7em;
  margin-left: 3px;
}
.header ul.buttons li.section:hover .section-title {
  background-color: #555;
}
.header ul.buttons li.section .sub-links {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 2px;
  white-space: nowrap;
  background: #555;
  padding: 5px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  min-width: 120px;
}
.header ul.buttons a {
  float: none;
  width: auto;
  margin-top: 0;
  display: block;
  margin-bottom: 3px;
}
.header ul.buttons button {
  width: 100%;
  height: auto;
  font-size: 12px;
  padding: 4px 8px;
  color: #fff;
  background-color: #555;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.header ul.buttons button:hover {
  background-color: #666;
}
.header ul.icon-menu {
  display: none;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.header ul.icon-menu li.icon-item {
  list-style: none;
}
.header ul.icon-menu li.icon-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #444;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s;
}
.header ul.icon-menu li.icon-item a:hover {
  background-color: #555;
}
.header ul.icon-menu li.icon-item a .menu-icon {
  font-size: 20px;
}
@media (max-width: 900px) {
  .header #menu-toggle {
    display: block;
  }
  .header ul.buttons:not(.icon-menu) {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background: #333;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .header ul.icon-menu {
    display: flex;
  }
}

.info {
  margin-top: 260px;
  margin-left: 20px;
}

.buttons {
  width: 100%;
  gap: 10px;
}
.buttons a {
  float: left;
  width: 100%;
  margin-top: 22px;
}
.buttons button {
  background-color: #792f2f; /* Green */
  border: none;
  width: 100%;
  height: 90px;
  color: #000000;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 44px;
  margin: 0;
  cursor: pointer;
  border-radius: 8px;
}
.buttons button a {
  text-decoration: none;
  width: 50%;
}

.content {
  margin-top: 80px;
  padding-bottom: 100px;
}
.content div, .content dl {
  float: left;
}

.content img {
  width: 100%;
  display: block;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .buttons {
  gap: 10px;
}

.footer .buttons button {
  background-color: #dfe7db;
  color: #151414;
  height: 50px;
  font-size: 18px;
  padding: 10px;
}

.thirty {
  width: 20%;
  float: left;
  margin: 20px 50px;
}

#logo {
  display: flex;
  align-items: center;
}
#logo img {
  height: 40px;
}

.vote-cell {
  position: relative;
  font-size: 32px;
  border: #804000 2px solid;
  border-radius: 3px;
  width: 14%;
  padding: 10px 5px;
}
.vote-cell .upvote, .vote-cell .downvote {
  position: absolute;
  height: 50%;
  margin-left: 4%;
  width: 58%;
}
.vote-cell .upvote {
  top: 0;
}
.vote-cell .downvote {
  bottom: 0;
}

.score-cell {
  height: 30px;
  text-align: center;
}

button#save {
  width: 298px;
  height: 40px;
  font-size: 30px;
}

.input-container {
  margin-bottom: 15px;
}
.input-container label {
  width: 120px;
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  text-align: right;
  vertical-align: top;
  font-size: 16px;
}
.input-container input {
  width: 300px;
  height: 30px;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

label {
  margin-left: 20px;
}

img.profile {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile-form {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
}

.profile-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.profile-picture-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-picture-section .profile-picture-btn {
  width: 150px;
  height: 35px;
  font-size: 14px;
  background-color: #792f2f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.profile-picture-section .profile-picture-btn:hover {
  background-color: #5a2323;
}

.profile-fields-section {
  flex: 1;
}

.form-actions {
  margin-top: 20px;
  text-align: left;
  margin-left: 130px;
}

.link {
  float: left;
  width: 85%;
  margin-top: 1%;
}
.link .title {
  font-size: 22px;
  margin-left: 4%;
}
.link .subtitle {
  font-size: 16px;
}

.project-form {
  max-width: 600px;
  margin: 20px 0;
}
.project-form label {
  display: block;
  margin-bottom: 5px;
  margin-left: 0;
  font-weight: bold;
  font-size: 14px;
}
.project-form input[type=text],
.project-form input[type=date],
.project-form textarea {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}
.project-form textarea {
  min-height: 80px;
  resize: vertical;
}
.project-form button[type=submit] {
  background-color: #792f2f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}
.project-form button[type=submit]:hover {
  background-color: #5a2323;
}

.alert {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  max-width: 600px;
}

/*# sourceMappingURL=everything.css.map */
