* {
  box-sizing: border-box;
}

html {
  /* sans-serif */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  --blueblack: #161f28;
  --orange: #ff6b35;
  --white: #ccc;

  background: var(--blueblack);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.highlight {
  color: var(--orange);
}

#about-page h1 {
  margin-top: 0.5em;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 20px 40px 20px;
  max-width: 100vw;
  box-sizing: border-box;
}

.loading-container {
  opacity: 0.5;
}

.main-text {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
}

#welcome-view.main-text {
  max-width: 600px;
}

#about-text.main-text {
  max-width: 600px;
}

.about-sections {
  margin-left: 20px;
  text-align: left;
}

.about-sections section {
  margin-bottom: 1em;
}

.about-sections section h3 {
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}
.about-sections section ul {
  list-style-type: none;
  padding-left: 20px;
}

.hero-section {
  padding: 60px 0 20px 0;
}

h2 {
  color: var(--white);
}

.hero-section h2 {
  margin-bottom: 0;
}

.description {
  color: var(--white);
  font-size: smaller;
  margin: 20px 0 40px 0;
  text-align: left;
}

.hero-section h1 {
  color: var(--orange);
  font-size: 5rem;
  margin: 0 0 20px 0;
  font-weight: bold;
}

.tagline {
  font-size: 1.5rem;
  color: var(--white);
  margin: 30px 0 40px 0;
  font-weight: 300;
}

.hero-login-button {
  background: var(--orange);
  color: var(--blueblack);
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 20px;
}

.hero-login-button:hover {
  background: #e55a2b;
}

.description-section {
  color: var(--white);
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

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

.bluesky-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.2s ease;
  font-size: 1rem;
}

.bluesky-link:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
}

.content-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
  text-align: left;
}

.feature {
  background: rgba(255, 107, 53, 0.05);
  padding: 30px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature h2 {
  color: var(--orange);
  font-size: 1.8rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.feature p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
img#butterfly {
  width: 25px;
  position: relative;
  top: -3px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(1207%)
    hue-rotate(184deg) brightness(94%) contrast(86%);
  margin-left: 8px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--blueblack);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 20px;
  z-index: 100;
  min-height: 60px;
  box-sizing: border-box;
}

.top-bar a {
  text-decoration: none;
}

a:active {
  outline: none;
}

.spacer {
  grid-column: 2;
}

.auth-buttons {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
}

.auth-buttons button {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-shadow: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: color 0.2s ease;
}

.logo-text {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  /* cursor: pointer; */
  /* user-select: none; */
}

.logo-text:hover {
  color: #ff8c5a;
}

.profile-view {
  color: var(--orange);
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
}

.profile-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  font-weight: bold;
}

.profile-info h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 600;
}

.profile-info .handle {
  color: #888;
  font-size: 1.2rem;
  margin: 5px 0;
}

.profile-info .node-status {
  color: var(--white);
  font-size: 0.9rem;
  margin: 15px 0 8px 0;
}

.node-highlight {
  color: var(--orange);
  font-weight: 600;
  font-style: normal;
}

.info-icon {
  color: #888;
  font-size: 0.8rem;
  margin-left: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.info-icon:hover {
  color: var(--orange);
}

#status-info-modal {
  background: var(--blueblack);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 30px;
  font-family: inherit;
  min-width: 300px;
  max-width: 90vw;
  color: var(--white);
}

#status-info-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

#status-info-modal h3 {
  margin: 0 0 20px 0;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
  color: var(--white);
}

#status-info-modal .status-explanation {
  margin-bottom: 15px;
}

#status-info-modal .status-type {
  color: var(--orange);
  font-weight: 600;
}

#status-info-modal p {
  margin: 10px 0;
  line-height: 1.5;
}

.profile-info .description {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
  margin: 15px 0;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange);
  display: block;
}

.stat-label {
  color: #888;
  font-size: 0.9rem;
}

.endorsements-section {
  margin-top: 10px;
  width: 100%;
}

.endorsements-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.tab-button {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
}

.tab-button.active,
.tab-button:hover {
  background: var(--orange);
  color: var(--blueblack);
  border-color: var(--orange);
}

.endorsements-content {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.endorsements-list {
  width: 100%;
}

.endorsements-items {
  /* max-height: 400px; */
  overflow-y: auto;
  padding-right: 5px;
}

.endorsements-items::-webkit-scrollbar {
  width: 6px;
}

.endorsements-items::-webkit-scrollbar-track {
  background: rgba(255, 107, 53, 0.1);
}

.endorsements-items::-webkit-scrollbar-thumb {
  background: var(--orange);
}

.endorsements-items::-webkit-scrollbar-thumb:hover {
  background: #e55a2b;
}

.membership-progress-section {
  margin-top: 10px;
}

.membership-progress-content {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  max-width: 400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.membership-progress-content h2 {
  color: var(--orange);
  font-size: 1.5rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.membership-progress-content p {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 25px 0;
}

.progress-container {
  margin: 25px 0;
}

.progress-bar {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-bottom: 10px;
  justify-content: center;
}

.progress-segment {
  flex: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  max-width: 80px;
}

.progress-segment.filled {
  background: linear-gradient(90deg, var(--orange), #ff8c5a);
}

.progress-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding-top: 10px;
}

.progress-hint {
  font-size: 0.9rem !important;
  color: #888 !important;
  font-style: italic;
  margin-top: 15px !important;
}

.progress-loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 40px 20px;
  text-align: center;
}

.progress-loading-state span {
  color: var(--white);
  font-size: 1rem;
}

.vibe-checkers-section {
  margin-top: 30px;
  text-align: left;
}

.vibe-checkers-section h3 {
  color: var(--orange);
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  text-align: center;
  font-weight: 600;
}

.vibe-checkers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vibe-checker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.25);
  box-sizing: border-box;
}

.vibe-checker-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  object-fit: cover;
}

.vibe-checker-avatar .avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--orange);
}

.vibe-checker-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.vibe-checker-name {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vibe-checker-handle {
  color: #888;
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.become-node-section {
  margin-top: 40px;
}

.become-node-content {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  max-width: 400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.become-node-content h2 {
  color: var(--orange);
  font-size: 1.5rem;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.become-node-content p {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 40px 0;
}

.become-node-button {
  background: var(--orange);
  color: var(--blueblack);
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.become-node-button:hover {
  background: #e55a2b;
}

.endorsements-list h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  text-align: center;
  font-weight: 600;
}

.endorsement-handle {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.endorsement-name a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

.endorsement-name a:hover {
  color: #ff8c5a;
  text-decoration: underline;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--white);
  padding: 40px;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 107, 53, 0.3);
  border-top: 3px solid var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.endorsement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.endorsement-item:hover {
  background: rgba(255, 107, 53, 0.08);
}

.endorsement-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  object-fit: cover;
}

.endorsement-avatar .avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--orange);
}

.endorsement-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.endorsement-name {
  color: var(--orange);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.endorsement-message {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.4;
}

#login-dialog {
  background: var(--blueblack);
  padding: 30px;
  font-family: inherit;
  min-width: 300px;
}

#login-dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

#login-dialog h3 {
  margin: 0 0 20px 0;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}

#login-dialog form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#login-dialog input[type="text"] {
  padding: 12px;
  background: var(--white);
  color: black;
  font-family: inherit;
  font-size: 16px;
}

#login-dialog input[type="text"]:focus {
  outline: none;
  /* box-shadow: 0 0 5px rgba(255, 107, 53, 0.3); */
}

#login-dialog input[type="text"]::placeholder {
  color: #666;
}

#login-dialog button {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 16px;
}

#login-dialog button[type="submit"] {
  background: var(--orange);
  color: var(--blueblack);
}

#login-dialog button[type="submit"]:hover {
  background: #e55a2b;
}

#login-dialog button[autofocus] {
  background: transparent;
  color: var(--orange);
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  margin: 0;
  padding: 0;
}

.add-new-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font-family: inherit;
  font-weight: normal;
  cursor: pointer;
  font-size: inherit;
  margin: 15px auto 20px auto;
  display: block;
}

.add-new-button:hover {
  text-decoration: underline;
}

.modal {
  color: var(--white);
  border-width: 0;
}

.modal-close {
  color: var(--white);
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

#vibe-check-modal {
  background: var(--blueblack);
  /* border: 1px solid var(--orange); */
  padding: 30px;
  font-family: inherit;
  min-width: 400px;
  max-width: 90vw;
}

#vibe-check-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

#vibe-check-modal h3 {
  margin: 0 0 20px 0;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}

#vibe-check-modal .modal-close {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.search-section {
  margin-bottom: 25px;
}

.search-input {
  width: 100%;
  padding: 12px;
  /* border: 1px solid var(--orange); */
  background: var(--white);
  color: black;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}

.search-input:focus {
  outline: none;
  /* border-color: #ff8c5a; */
  box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

.search-input::placeholder {
  color: #666;
}

.search-results {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 15px;
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: rgba(255, 107, 53, 0.1);
}

.search-results::-webkit-scrollbar-thumb {
  background: var(--orange);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 8px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-result-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  object-fit: cover;
}

.search-result-avatar .avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--orange);
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  color: var(--orange);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.search-result-handle {
  color: #888;
  font-size: 0.9rem;
}

.search-empty {
  text-align: center;
  color: #888;
  font-style: italic;
  padding: 20px;
}

#vibe-check-confirmation-modal {
  background: var(--blueblack);
  /* border: 1px solid var(--orange); */
  padding: 30px;
  font-family: inherit;
  min-width: 400px;
  max-width: 500px;
  width: 90vw;
}

#vibe-check-confirmation-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

#vibe-check-confirmation-modal h3 {
  margin: 0 0 20px 0;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}

#vibe-check-confirmation-modal .modal-close {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.confirmation-content {
  margin-bottom: 30px;
}

.confirmation-content p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.confirmation-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.confirm-button {
  background: var(--orange);
  color: var(--blueblack);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-family: inherit;
  /* font-weight: 600; */
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 1rem;
}

.cancel-button {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  border-radius: 5px;
  font-family: inherit;
  /* font-weight: 600; */
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .top-bar {
    padding: 12px 15px;
    min-height: 50px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .auth-buttons button {
    font-size: 14px;
  }

  .container {
    padding: 80px 15px 20px 15px;
  }

  .hero-section {
    padding: 40px 0 20px 0;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero-login-button {
    font-size: 1rem;
    padding: 12px 30px;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .feature {
    padding: 25px;
  }

  .feature h2 {
    font-size: 1.5rem;
  }

  .profile-view {
    padding: 0 15px;
  }

  .profile-avatar {
    width: 100px;
    height: 100px;
  }

  .profile-info h2 {
    font-size: 1.3rem;
  }

  .profile-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .membership-progress-content,
  .become-node-content {
    max-width: calc(100% - 40px);
    margin: 0 20px;
    padding: 30px 15px;
  }

  .endorsements-content {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 10px 12px;
    min-height: 45px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .auth-buttons button {
    font-size: 13px;
  }

  .container {
    padding: 70px 12px 15px 12px;
    width: 100%;
    max-width: 100vw;
  }

  .main-text {
    width: 100%;
    padding: 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    word-break: break-word;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .hero-login-button {
    font-size: 0.9rem;
    padding: 10px 25px;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .feature {
    padding: 20px;
    width: 100%;
    margin: 0;
  }

  .membership-progress-content,
  .become-node-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 25px 12px;
  }

  .endorsements-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .profile-view {
    padding: 0 10px;
    width: 100%;
  }
}
