/* Container */
.add-post-form__container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  box-shadow: 0px 10px 100px -40px var(--Green-Glow);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #363636;
  justify-content: flex-start;
  align-items: stretch;
}

/* Left Side: Content */
.add-post-form__content {
  width: 720px;
  padding: 10px;
  background: #000;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.add-post-form__content-input {
  flex-grow: 1;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #FFFFFF;
  word-wrap: break-word;
  resize: none;
}

/* Right Side: Attributes */
.add-post-form__attributes {
  flex: 1 1 0;
  padding: 10px 20px;
  background: linear-gradient(0deg, #000 0%, #121212 33.81%);
  outline: 1px solid #363636;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 280px;
}

/* Heading */
.add-post-form__heading {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.add-post-form__heading h2 {
  color: #FFFFFF;
  font-size: 24px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  margin: 0;
}

/* Fields */
.add-post-form__field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.add-post-form__label {
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
}

.add-post-form__input {
  width: 100%;
  height: 42px;
  box-sizing: border-box;
  padding: 0 10px;
  background: #000;
  border: 1px solid #363636;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  line-height: 16px;
  outline: none;
}

.add-post-form__textarea {
  height: auto;
  padding: 10px;
  min-height: 100px;
}

/* Checkbox Group */
.add-post-form__checkbox-group {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background: #000;
  border: 1px solid #363636;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.add-post-form__checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.add-post-form__checkbox {
  width: 10px;
  height: 10px;
  border: 1px solid #363636;
  background: none;
  appearance: none;
  cursor: pointer;
}

.add-post-form__checkbox:checked {
  background-color: #0DAE5E;
}

.add-post-form__checkbox-label {
  color: #FFFFFF;
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  line-height: 16px;
}

/* File Upload Field */
.add-post-form__file-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.add-post-form__file-upload-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background: #000;
  color: whitesmoke;
  font-family: 'B612 Mono', monospace;
  font-size: 12px;
  border: 1px solid #363636;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Existing Images Section */
.add-post-form__field.add-post-form__existing-images {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.existing-image-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 65px;
  background: #000;
  border: 1px solid #363636;
  border-radius: 6px;
  padding: 8px;
  box-sizing: border-box;
}

.existing-image-wrapper img {
  width: 80px;
  height: auto;
  border-radius: 6px;
  border: 1px solid #363636;
}

/* Buttons */
.add-post-form__buttons {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.add-post-form__button {
  flex: 1;
  height: 42px;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.8;
  text-decoration: none;
  border: 1px solid var(--Electro-Forest-Green);
  cursor: pointer;
  transition: border 0.3s ease-out;
}

.add-post-form__button:hover {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 1px solid rgba(13, 174, 94, 0.5); 
}

.add-post-form__button-preview {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.add-post-form__button-preview {
  background: rgba(var(--Electro-Yellow-RGB), 1); /* Full opacity yellow */
  transition: 500ms;
}

.add-post-form__button-preview:hover {
  background: rgba(var(--Electro-Yellow-RGB), 0.8); /* Reduced opacity yellow */
}

.add-post-form__button-save {
  background: rgba(var(--Electro-Forest-Green-RGB), 1); /* Full opacity green */
  transition: 500ms;
}

.add-post-form__button-save:hover {
  background: rgba(var(--Electro-Forest-Green-RGB), 0.8); /* Reduced opacity green */
}


.add-post-form__input:focus, 
.add-post-form__textarea:focus {
  border-color: var(--Electro-Forest-Green);
  box-shadow: 0px 0px 10px var(--Green-Glow);
  outline: none;
}

.add-post-form__input.add-post-form__textarea:focus {
  border-color: var(--Electro-Forest-Green);
  box-shadow: 0px 0px 10px var(--Green-Glow);
}

.add-post-form__checkbox:focus {
  outline: 2px solid var(--Electro-Forest-Green);
  outline-style: double;
}

.add-post-form__input:-webkit-autofill,
.add-post-form__input:-webkit-autofill:hover,
.add-post-form__input:-webkit-autofill:focus {
  background-color: rgba(var(--Electro-Forest-Green-RGB), 0.1) !important; /* Transparent green */
  box-shadow: 0 0 0px 1000px #000 inset !important; /* Match your form background */
  border-color: var(--Electro-Forest-Green) !important; /* Consistent border color */
  color: var(--White) !important; /* Force white font color */
  -webkit-text-fill-color: var(--White) !important; /* Ensures text color stays white in autofill */
  transition: background-color 500ms ease-in-out, color 500ms ease-in-out;
}


.dashboard-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem 2rem 1rem;
}

.dashboard-welcome-title {
  text-align: center;
  width: 100%;
  color: white;
  font-size: 36px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}

.dashboard-welcome-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.stat-card-posts,
.stat-card-categories,
.stat-card-drafts,
.stat-card-tags {
  background: radial-gradient(50% 50% at 50% 50%, #000 0%, #121212 100%);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Gray);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  min-height: 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.4s ease;
}

.stat-card-posts:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 60px var(--Electro-Forest-Green);
  border: 1px solid var(--Electro-Forest-Green); 
}
.stat-card-drafts:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 60px var(--Electro-Red);
  border: 1px solid var(--Electro-Red); 
}
.stat-card-categories:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 60px var(--Electro-Blue);
  border: 1px solid var(--Electro-Blue); 
}
.stat-card-tags:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 60px var(--Electro-Yellow);
  border: 1px solid var(--Electro-Yellow); 
}

.stat-title {
  text-align: center;
  font-size: 1rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  word-wrap: break-word;
  margin: 0;
}

.stat-value {
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  word-wrap: break-word;
  margin: 0;
  color: var(--White);
}

.stat-green  { color: var(--Electro-Forest-Green); }
.stat-red    { color: var(--Electro-Red); }
.stat-blue   { color: var(--Electro-Blue); }
.stat-yellow { color: var(--Electro-Yellow); }

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.charts-title {
  text-align: center;
  width: 100%;
  color: white;
  font-size: 1.5rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}

.chart-card {
  border-radius: 8px;
  background: radial-gradient(50% 50% at 50% 50%, #000 0%, #121212 100%);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Gray);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-card:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 60px var(--Electro-Forest-Green);
}

.chart-placeholder-text {
  font-size: 24px;
  font-weight: 700;
  word-wrap: break-word;
  color: var(--White);
}

@media (max-width: 800px) {
  .chart-card {
    padding: 1rem 0 1rem 0;
  }
}
.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.footer-text {
  text-align: center;
  color: var(--Gray);
  font-size: 12px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.footer-link button {
  background: none;
  border: none;
  color: #CECDCC;
  font-size: 12px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  transition: color 0.4s ease, text-decoration 0.5s ease-out;
}

.footer-link button:hover {
  color: var(--Electro-Forest-Green);
  text-decoration: underline;
}

/* About Dialog Styles */
.footer-about-dialog {
  width: 100%;
  max-width: 360px;
  background: radial-gradient(circle, black 0%, #121212 100%);
  box-shadow: 0px 10px 100px -40px var(--Green-Glow);
  border: 1px solid var(--Gray);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  box-sizing: border-box;
}

.footer-dialog__close-button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* About Dialog Content */
.about-dialog__content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.about-dialog__close-icon {
  align-self: flex-end;
  width: 20px;
  height: 20px;
}

.about-dialog__close-box {
  width: 15px;
  height: 15px;
  background: white;
}

.about-dialog__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.about-dialog__header {
  text-align: center;
  color: #0dae5e;
  font-size: 16px;
  font-family: Unbounded, sans-serif;
  font-weight: 300;
}

.about-dialog__info {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.about-dialog__name {
  font-size: 20px;
  font-family: Unbounded, sans-serif;
  font-weight: 700;
}

.about-dialog__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.about-dialog__bio > p {
  margin: 0;
  text-wrap: pretty;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-dialog__link {
  color: white;
  text-decoration: underline;
  transition: color 0.4s ease, text-decoration 0.5s ease-out;
}

.about-dialog__link:hover {
  color: var(--Electro-Forest-Green);
  text-decoration: underline;
}

.about-dialog__recent {
  width: 100%;
}

.about-dialog__recent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #0dae5e;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.about-dialog__recent-image {
  height: 22px;
  width: 80px;
  border-radius: 10px;
}

.about-dialog__github {
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #0dae5e;
}

.about-dialog__github-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.about-dialog__github-icon {
  width: 24px;
  height: 24px;
}

.about-dialog__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.about-dialog__commit-message {
  text-align: center;
  font-family: B612 Mono;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* Contact Dialog Styles */
.footer-contact-dialog {
  width: 100%;
  max-width: 360px;
  background: radial-gradient(62.86% 62.86% at 50% 0%, #000 0%, #121212 100%);
  box-shadow: 0px 10px 100px -40px var(--Green-Glow);
  border-radius: 12px;
  border: 1px var(--Gray) solid;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  box-sizing: border-box; 
}

.footer-dialog__close-button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.contact-form {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.contact-form__heading h2 {
  text-align: center;
  color: #0DAE5E;
  font-size: 16px;
  font-family: Unbounded, sans-serif;
  font-weight: 300;
  margin: 0;
}

.contact-form__subheading p {
  text-align: center;
  color: white;
  font-family: Lato;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  padding: 0 20px 0 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  color: white;
  font-size: 12px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 10px;
  background: black;
  border-radius: 6px;
  border: 1px var(--Gray) solid;
  color: white;
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  line-height: 16px;
  outline: none;
  box-sizing: border-box;
}

.contact-form__textarea {
  height: 180px;
  resize: none;
}

.contact-form__checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form__checkbox {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px var(--Gray) solid;
  background: none;
  cursor: pointer;
}

.contact-form__checkbox-label {
  color: white;
  font-size: 12px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.contact-form__message {
  color: white;
  font-size: 12px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.contact-form__buttons {
  display: flex;
  justify-content: center;
}

.contact-form__button {
  width: 100%;
  height: 32px;
  padding: 6px 10px;
  background: var(--Black-Gradient-Reverse, linear-gradient(0deg, #000 0%, #121212 100%));
  border: 1px solid var(--Gray);
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: not-allowed;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, border 0.3s ease-out;
}

.contact-form__button:hover,
.contact-form__button:focus {
  border: 1px solid var(--Gray); 
  background: rgba(76, 76, 76, 0.8);
  outline: 2px solid rgba(59, 59, 59, 0.5); 
  outline-offset: 2px;
}

.contact-form__button-text {
  color: rgb(156, 156, 156);
  font-size: 16px;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--Electro-Forest-Green);
  box-shadow: 0px 0px 10px var(--Green-Glow);
}

.contact-form__checkbox {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px var(--Gray) solid;
  background: none;
  cursor: pointer;
  appearance: none;
  transition: background-color 0.3s, border-color 0.3s;
}

.contact-form__checkbox:checked {
  background-color: var(--Electro-Forest-Green, #0DAE5E);
  border-color: var(--Electro-Forest-Green, #0DAE5E);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2l-3.5-3.5L4.3 14l4.7 4.7L20.7 7.7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.contact-form__checkbox:focus {
  outline: 2px solid var(--Electro-Forest-Green);
  outline-style: double;
}

.contact-form__input:-webkit-autofill,
.contact-form__input:-webkit-autofill:hover,
.contact-form__input:-webkit-autofill:focus {
  background-color: rgba(var(--Electro-Forest-Green-RGB), 0.1) !important;
  box-shadow: 0 0 0px 1000px #000 inset !important;
  border-color: var(--Electro-Forest-Green) !important;
  color: var(--White) !important;
  -webkit-text-fill-color: var(--White) !important;
  transition: background-color 500ms ease-in-out, color 500ms ease-in-out;
}
.login-form-page {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}

/* General Wrapper */
.login-form-container {
  width: 100%;
  min-height: 420px;
  max-width: 340px;
  margin: 0 auto;
  padding: 32px 20px;
  background: radial-gradient(62.86% 62.86% at 50% 0%, #000 0%, #121212 100%);
  box-shadow: var(--Box-Shadow-Green-Glow);
  border-radius: 12px;
  border: 1px solid #363636;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.login-form {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Heading */
.login-form-header {
  text-align: center;
  color: white;
  font-size: 24px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}

/* Form Fields */
.login-form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.login-form-label {
  color: white;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.login-form-input {
  width: 100%;
  height: 48px;
  padding: 10px;
  margin-bottom: 12px;
  background: black;
  border-radius: 6px;
  border: 1px solid var(--Gray);
  color: white;
  font-size: 12px;
  font-family: 'B612 Mono', monospace;
  line-height: 16px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-form-input:focus {
  border-color: #0DAE5E;
  box-shadow: 0px 0px 10px #0DAE5E;
}

#user_email:-webkit-autofill,
#user_email:-webkit-autofill:hover,
#user_email:-webkit-autofill:focus {
  background-color: rgba(var(--Electro-Forest-Green-RGB), 0.1) !important;
  box-shadow: 0 0 0px 1000px #000 inset !important;
  border-color: var(--Electro-Forest-Green) !important;
  color: var(--White) !important;
  -webkit-text-fill-color: var(--White) !important;
  transition: background-color 500ms ease-in-out, color 500ms ease-in-out;
}

/* Checkbox Field */
.login-form-checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.login-form-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #363636;
  background: none;
  cursor: pointer;
  appearance: none;
  transition: background-color 0.3s, border-color 0.4s;
}

.login-form-checkbox:checked {
  background-color: #0DAE5E;
  border-color: #0DAE5E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2l-3.5-3.5L4.3 14l4.7 4.7L20.7 7.7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.login-form-checkbox-label {
  color: white;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 24px;
}

/* Submit Button */
.login-form-button {
  width: 100%;
  height: 48px;
  padding: 10px;
  background: var(--Electro-Forest-Green);
  border: 1px solid var(--Gray);
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease-out, border 0.4s ease-out;
}

.login-form-button:hover,
.login-form-button:focus {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 2px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
}

/* Links */
.login-form-links {
  text-align: center;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: #CECDCC;
}

.login-form-links a {
  color: #0DAE5E;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.login-form-links a:hover {
  text-decoration: underline;
}

/* Password Reset Page */
.password-reset-page {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}

/* General Wrapper */
.password-reset-container {
  width: 100%;
  min-height: 420px;
  max-width: 400px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.password-reset-form {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Heading */
.password-reset-header {
  text-align: center;
  color: white;
  font-size: 24px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  margin: 0;
}

/* Form Fields */
.password-reset-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.password-reset-label {
  color: white;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.password-reset-input {
  width: 100%;
  height: 48px;
  padding: 10px;
  margin-bottom: 28px;
  background: black;
  border-radius: 6px;
  border: 1px solid var(--Gray);
  color: white;
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  line-height: 16px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.password-reset-input:focus {
  border-color: #0DAE5E;
  box-shadow: 0px 0px 10px #0DAE5E;
}

/* Submit Button */
.password-reset-button {
  width: 100%;
  height: 48px;
  padding: 10px;
  background: var(--Electro-Forest-Green);
  border: 1px solid var(--Gray);
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease-out, border 0.4s ease-out;
}

.password-reset-button:hover,
.password-reset-button:focus {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 2px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
}

/* Links */
.password-reset-links {
  text-align: center;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: #CECDCC;
}

.password-reset-links a {
  color: var(--Electro-Forest-Green);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.password-reset-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .login-form-container {
    padding: 1rem;
    background: none;
    box-shadow: none;
    border: none;  
  }

  .login-form-page {
    margin: 0;
  }
}
.navbar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: top;
  padding: 0;
}

.navbar-logo img {
  height: 120px;
  transition: transform 0.4s ease;
}

.navbar-logo img:hover{
  transform: translateY(2px);
}

.dropdown-container {
  position: relative;
}

.dropdown-button {
  display: flex;
  height: 36px;
  justify-content: center;
  padding: 6px 20px;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-family: Unbounded;
  font-weight: 400;
  color: whitesmoke;
  border-radius: 24px;
  border: 1px solid var(--Gray, #ccc);
  background: var(--Black-Gradient-Reverse, linear-gradient(0deg, #000 0%, #121212 100%));
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.3s ease, border 0.3s ease-out;
}

.dropdown-button:hover,
.dropdown-button:focus {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 2px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 10;
  right: 0;
  min-width: 160px;
  padding: 8px 0px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E);
  background: var(--Black-Gradient, linear-gradient(180deg, #000 0%, #121212 100%));
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 10;
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hidden {
  display: none;
}

.dropdown-link,
.dropdown-link-button {
  display: block;
  padding: 8px 16px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  color: #FFF;
  border: none;
  background: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}


.dropdown-link:hover,
.dropdown-link-button:hover {
  background-color: #0DAE5E;
}

.dropdown-link-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.dropdown-menu .dropdown-link,
.dropdown-menu .dropdown-link-button {
  font-family: "Unbounded";
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.3px;

}

.menu-icon {
  width: 16px;
  height: 16px;
}

/* Transition classes */
.transition {
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in {
  transition-timing-function: ease-in;
}

.duration-75 {
  transition-duration: 75ms;
}

.duration-100 {
  transition-duration: 100ms;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.scale-95 {
  transform: scale(0.95);
}

.scale-100 {
  transform: scale(1);
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

@media (max-width: 800px) {
  .navbar-logo img {
    height: 80px;
  }
}
.error-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 520px;
  height: 100%;
  gap: 14px;
  margin: 0 auto;
  padding: 20px;
}

.error-icon-container {
  width: 200px;
  height: 200px;
  position: relative;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fade {
  0% {
    opacity: 100;
  }
  100% {
    opacity: 0.5;
  }
}

.error-icon-background {
  width: 100%;
  height: 100%;
  animation: bounce 2s ease-in-out infinite, fade 2s ease-in-out infinite alternate;
}

.error-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  gap: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.error-title {
  font-size: 4rem;
  font-family: Unbounded;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.error-title-message {
  font-size: 1.25rem;
  font-family: Unbounded;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 0;
}

.error-message {
  text-align: center;
  font-family: B612 Mono;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  width: 200px;
}

.error-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: var(--Electro-Forest-Green);
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--Gray);
  transition: background 0.3s ease, border 0.3s ease-out;
}

.error-button:hover {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 2px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .error-wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
  }

  .error-content {
    width: 300px;
  }

  .error-icon-container {
    width: 80px;
    height: 80px;
  }

  .error-title {
    font-size: 3rem;
  }

  .error-message {
    font-size: 0.75rem;
  }
}
.pagy {
  display: flex;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  font-weight: 400;
  line-height: 16px;
  overflow: hidden;
  border: 1px solid var(--Gray, #363636);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
  background: var(--Black-Gradient-Reverse, linear-gradient(0deg, #000 0%, #121212 100%));
  transition: background-color 0.3s ease, border 0.3s ease-out;
}

.pagy:hover {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E);
  background-color: rgba(13, 174, 94, 0.1);
  outline: 1px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
}

.pagy a:not(.gap) {
  display: block;
  text-decoration: none;
  border-left: 1px solid var(--Gray);
  border-right: 1px solid transparent;
  padding: 0.5rem 0.75rem;
  color: inherit;
  transition: background-color 0.3s ease, border-left-color 0.3s ease, border-right-color 0.3s ease;
}

.pagy a:not(.gap):first-child {
  border-left: none;
}

.pagy a:not(.gap):hover,
.pagy a:not(.gap):focus {
  background-color: rgba(13, 174, 94, 0.8);
  border-left-color: var(--Electro-Forest-Green, #0DAE5E);
  border-right-color: var(--Electro-Forest-Green, #0DAE5E);
  outline: none;
}

.pagy a:not(.gap):last-child:hover {
  border-right-color: var(--Electro-Forest-Green, #0DAE5E);
}

.pagy a:not(.gap):not([href]) { /* Disabled links */
  cursor: default;
  color: #d1d5db;
  border-left-color: var(--Gray);
  border-right-color: transparent;
}

.pagy a:not(.gap).current {
  background-color: var(--Electro-Forest-Green);
  color: white;
  border-left-color: var(--Electro-Forest-Green);
  border-right-color: transparent;
  transition: background-color 0.3s ease, border-left-color 0.3s ease, border-right-color 0.3s ease;
}


.pagy label {
  white-space: nowrap;
  display: inline-block;
  border-radius: 0.5rem;
  background-color: #e5e7eb;
  padding: 0.125rem 0.75rem;
  transition: background-color 0.3s ease;
}

.pagy label:hover {
  background-color: rgba(13, 174, 94, 0.8);
  color: white;
}
/* `Code` highlighting */
.post-content p code, 
.post-content li code {
  background: rgba(50, 50, 50, 0.8);
  color: var(--Electro-Yellow);
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-family: B612 Mono;
}

/* Code block wrapper and copy button */
.code-block-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  border: 1px solid var(--Gray, #363636);
  border-radius: 6px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.code-block-header {
  display: flex;
  justify-content: flex-end;
  background: #333;
}

.post-content .highlight {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  border-radius: 0;
}

.code-block-wrapper .highlight pre {
  margin: 0;
  padding: 0;
  white-space: pre;
  word-wrap: normal;
  overflow-x: auto;
  scrollbar-width: none; 
}

.code-block-wrapper .highlight pre code {
  display: block;
  padding: 20px;
  box-sizing: border-box;
}

.code-block-language {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Light-Gray);
  font-size: 0.7rem;
  font-family: B612 Mono;
  margin-right: auto;
  padding: 0 8px;
  
}

.copy-button {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  background: var(--Electro-Forest-Green);
  color: white;
  font-size: 0.8rem;
  font-family: B612 Mono;
  border: none;
  padding: 4px 8px;
  font-size: 0.7rem;
  border-radius: 3px;
  cursor: pointer;
  margin: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.copy-button:hover {
  background: var(--Electro-Yellow);
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);

}
.admin-posts {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.admin-posts__title {
  width: 100%;
  color: white;
  font-size: 36px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}

.admin-posts__add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--Electro-Forest-Green);
  border: 1px solid var(--Gray);
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, border 0.3s ease-out;
  text-align: center;
}

.admin-posts__add-button:hover,
.admin-posts__add-button:focus {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 2px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
}

.admin-posts__add-button-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.admin-posts__add-button:hover .admin-posts__add-button-icon {
  transform: rotate(90deg);
}

.admin-posts__add-button-icon {
  transform: rotate(0deg);
} 


.admin-posts__table {
  width: 100%;
  max-width: 1000px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  border: 1px solid var(--Gray, #363636);
  background: linear-gradient(360deg, black 0%, #121212 100%);
  box-shadow: 0px 10px 100px -40px var(--Green-Glow);
  overflow: hidden;
}

.admin-posts__table-header {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  border-left: 1px solid var(--Gray);
}

.admin-posts__table-header:first-child {
  border-left: none;
}

.admin-posts__table tr {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.admin-posts__table tr:hover {
  background-color: rgba(13, 174, 94, 0.5);
  box-shadow: 0px 0px 10px rgba(13, 174, 94, 0.3);
}

.admin-posts__table-cell {
  color: white;
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  font-weight: 400;
  line-height: 16px;
  padding: 10px 12px;
  border-left: 1px solid #363636;
  border-top: 1px solid #363636;
  transition: color 0.3s ease;
}

.admin-posts__table tr:hover .admin-posts__table-cell {
  color: rgba(255, 255, 255, 0.9);
}

.admin-posts__table-cell:nth-child(1) {
  width: 73px;
  border-left: none;
}

.admin-posts__table-cell:nth-child(4),
.admin-posts__table-cell:nth-child(5) {
  width: 75px;
}

.admin-posts__title-link {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  color: white;
  font-family: 'B612 Mono', monospace;
  font-weight: 400;
  line-height: 16px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.admin-posts__title-link:hover {
  color: var(--Electro-Forest-Green);
  text-decoration: underline;
}

.admin-posts__table-cell-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.admin-posts__no-posts {
  text-align: center;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--Light-Gray);
}

.admin-posts__action-link-Edit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.admin-posts__action-link-Delete {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.admin-posts__action-link-Edit:hover {
  color: var(--Electro-Forest-Green); 
  text-decoration: underline;
}

.admin-posts__action-link-Delete:hover {
  color: var(--Electro-Red); 
  text-decoration: underline;
}

.admin-posts__icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  transition: fill 0.3s ease;
}

.admin-posts__action-text {
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  font-weight: 400;
  line-height: 16px;
}

.admin-posts__pagination {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

dialog:not([open]) {
  display: none;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
}

.dialog {
  width: 80%;
  max-width: 400px;
  background: radial-gradient(62.86% 62.86% at 50% 0%, #000 0%, #121212 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid #363636;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: 'Inter', sans-serif;
}

.dialog__close-button {
  align-self: flex-end;
  color: var(--White);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
}

.dialog__icon-container {
  padding: 6px;
  background: rgba(242, 31, 81, 0.20);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog__icon {
  width: 40px;
  height: 40px;
}

.dialog__title {
  font-size: 14px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.dialog__post-title {
  font-size: 10px;
  font-family: 'B612 Mono', monospace;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  margin: 0;
}

.dialog__buttons {
  display: flex;
  flex-direction: column;
}

.dialog__delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  padding: 10px 20px;
  background: var(--Electro-Red);
  border: 1px solid var(--Gray);
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, border 0.3s ease-out;
  text-align: center;
}

.dialog__delete-button:hover,
.dialog__delete-button:focus {
  color: white;
  border: 1px solid var(--Electro-Red, #F21F51); 
  background: rgba(242, 31, 81, 0.75);
  outline: 1px solid rgba(242, 31, 81, 0.5); 
  outline-offset: 2px;
}


.dialog__buttons {
  width: 100%;
  display: flex;
  gap: 10px;
}

.dialog__cancel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--Gray);
  border: 1px solid var(--Gray, #363636);
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, border 0.3s ease-out;
  text-align: center;
}

.dialog__cancel-button:hover,
.dialog__cancel-button:focus {
  border: 1px solid var(--Gray, #363636); 
  background: rgba(106, 105, 105, 0.5);
  outline: 1px solid rgba(106, 105, 105, 0.5); 
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .admin-posts__table-header:nth-child(3),
  .admin-posts__table-cell:nth-child(3) {
    display: none;
  }
}

@media (max-width: 576px) {
  .admin-posts__title-link {
    white-space: nowrap;
    max-width: 150px; /* Adjust this value to fit your layout */
  }

  .admin-posts__table-cell {
    word-wrap: break-word;
  }

  .admin-posts__table-header:nth-child(1),
  .admin-posts__table-cell:nth-child(1) {
    display: none;
  }

  .admin-posts__table-header:nth-child(4),
  .admin-posts__table-cell:nth-child(4) {
    display: none;
  }
}
.post-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 12px;
}

.post-content {
  display: flex;
  padding: 3rem;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--Gray, #363636);
  background: radial-gradient(50% 50% at 50% 50%, #1a1a1a 0%, #121212 100%);
  background-blend-mode: color-dodge;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.post-title {
  color: whitesmoke;
  text-align: center;
  font-family: Unbounded;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  margin: 0;
  word-wrap: break-word;
}

.post-date {
  color: var(--Electro-Forest-Green, #0DAE5E);
  text-align: center;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}

.post-sorters {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 500px;
}

.post-sorters-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0;
}

.post-sorters-icon.comments-icon {
  transform: translateY(3px);
}

.post-taglist {
  display: flex;
  padding: 0 1rem 0 1rem;
  flex-wrap: wrap;
  max-width: 750px;
  width: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: auto;
  box-sizing: border-box;
}

.post-tag {
  padding: 4px 12px;
  color: var(--Light-Gray);
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.post-tag:hover {
  transform: translateY(-2px);
  text-decoration: underline;
  color: whitesmoke;
}

.post-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px 0 0;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.category-tag {
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-family: Unbounded, sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease, filter 0.3s ease;
}

/* Specific category colors */
.category-tag[data-category="frontend"] {
  background: var(--Electro-Blue);
}
.category-tag[data-category="backend"] {
  background: var(--Electro-Yellow);
}
.category-tag[data-category="devops"] {
  background: var(--Electro-Red);
}
.category-tag[data-category="music"] {
  background: var(--Electro-Purple);
}
.category-tag[data-category="fullstack"] {
  background: var(--Electro-Forest-Green);
}
.category-tag[data-category="personal"] {
  background: var(--Electro-Orange);
}

.category-tag:hover {
  transform: translateY(-3px); 
  filter: brightness(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Markdown and Code Block Styling */
.post-content h1,
.post-content h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 36px 0 0 0;
}

.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 16px 0 0 0;
}

.post-content p,
.post-content li,
.post-content ul,
.post-content td  {
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 10px 0;
}

.post-content h1 {
  font-size: 2rem;
  color: var(--Electro-Forest-Green);
}

.post-content h2 {
  font-size: 1.75rem;
  color: var(--Electro-Blue);
}

.post-content h3 {
  font-size: 1.5rem;
  color: var(--Electro-Forest-Green);
}

.post-content h4 {
  font-size: 1.25rem;
  color: var(--Electro-Yellow);
}

.post-content h5 {
  font-size: 1rem;
  color: var(--Electro-Pink);
}

.post-content h6 {
  font-size: 1rem;
  color: var(--Electro-Purple);
}

.post-content ul {
  list-style-type: disc;
  margin: 10px 20px;
  padding-left: 20px;
}

.post-content ol {
  list-style-type: decimal;
  margin: 10px 20px;
  padding-left: 20px;
}

.post-content ul li::marker,
.post-content ol li::marker {
  color: var(--Electro-Forest-Green);
  font-weight: bold;
  font-size: medium;
}

.post-content blockquote {
  border-left: 5px solid var(--Electro-Forest-Green);
  padding: 10px 20px;
  background: rgba(100, 100, 100, 0.3);
  color: var(--White);
  font-style: italic;
  margin: 20px 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
}

.post-content a {
  color: var(--Electro-Blue);
  text-decoration: none;
  transition: color 0.4s ease, text-decoration 0.4s ease-out;
}

.post-content a:hover {
  color: var(--Electro-Red);
  text-decoration: underline;
}

.post-content hr {
  border: none;
  width: 100%;
  height: 1px;
  background: var(--Electro-Forest-Green);
  margin: 20px 0 10px 0;
}

.post-content-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 28px;
}

.post-content-image {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 6px;
  cursor: pointer;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.hidden {
  display: none;
}

.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-image {
  max-height: 90vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

/* Table Styling */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 6px;
  border: 1px solid var(--Gray, #363636);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
  scrollbar-width: none;
  overflow-y: hidden;
}

.table-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--Black-Gradient-Reverse);
  margin: 0;
}

.table-container thead tr:first-child td {
  color: whitesmoke;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #363636;
  background: var(--Login-Gradient);
  border-left: none;
}

.table-container tbody tr:nth-child(even) {
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.table-container tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.4s ease;
}

.table-container tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.table-container tbody td {
  text-wrap: balance;
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.8px;
  padding: 10px 12px;
  border-left: 1px solid #363636;
  transition: color 0.3s ease, background-color 0.2s ease;
}

.table-container tbody td:nth-child(1) {
  border-left: none;
}

.table-container tbody tr:hover td {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 800px) {
  .post-content {
    padding: 0.8rem;
  }
}
.welcome-section {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 775px;
  border-bottom: 1px solid var(--Gray, #ccc);
  color: whitesmoke;
  margin: 1rem 0 2rem 0;
  padding: 10px 10px 0 10px;
  box-sizing: border-box;
}

.welcome-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.welcome-title {
  font-family: Unbounded, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 10px 0 10px;
  margin: 0;
}

.welcome-img {
  width: 160px;
  height: 160px;
  margin-top: 24px;
}

.welcome-text {
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  text-wrap: balance;
  margin: 0;
}

.welcome-links {
  display: flex;
  width: 100%;
  max-width: 200px;
  justify-content: space-around;
  margin: 0 0 16px 0;
}

.welcome-icon-website,
.welcome-icon-github,
.welcome-icon-linkedin {
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: whitesmoke;
  transition: transform 0.5s ease, color 0.4s ease, filter 0.5s ease;
}

.welcome-icon-website:hover {
  transform: translateY(-2px);
  color: var(--Electro-Forest-Green);
  filter: drop-shadow(var(--Electro-Forest-Green) 1px 1px 10px)
}

.welcome-icon-github:hover {
  transform: translateY(-2px);
  color: var(--Electro-Yellow);
  filter: drop-shadow(var(--Electro-Yellow) 1px 1px 10px)
}

.welcome-icon-linkedin:hover {
  transform: translateY(-2px);
  color: var(--Electro-Blue);
  filter: drop-shadow(var(--Electro-Blue) 1px 1px 10px)
}

.posts-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 1rem;
}

/* Categories Bar */
.category-bar-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.categories-bar-container {
  display: flex;
  width: 100%;
  max-width: 825px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background: radial-gradient(50% 50% at 50% 50%, #000 0%, #121212 100%);
  background-blend-mode: color-dodge;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Gray, #363636);
  overflow: hidden;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.4s ease;
}

.categories-bar-container:hover {
  transform: scale(1.03);
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
}

.categories-bar-container:empty {
  display: none;
}

.category-title-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: Unbounded;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: radial-gradient(50% 50% at 50% 50%, #000 0%, #121212 100%);
  background-blend-mode: color-dodge;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  margin: 0;
  text-align: center;
  padding: 10px 0 10px 0;
  border-radius: 12px;
  border: 1px solid var(--Gray, #ccc);
  min-width: 250px;
}

.categories-bar-container > .title-container {
  display: flex;
  width: 100%;
  height: 38px;
  padding: 10px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.title-container > .title-text {
  color: var(--White);
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.3px;
}

.title-container > .question-filled {
  width: 14px;
  height: 14px;
}

.category-selectors {
  display: flex;
  width: 100%;
  min-height: 36px;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.category {
  display: flex;
  height: 38px;
  min-width: 96px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.3s;
}

.category-text {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.tooltip-icon {
  width: 13px;
  height: 13px;
  margin-left: 8px;
  cursor: pointer;
  vertical-align: middle;
}

.category.frontend {
  --category-color: var(--Electro-Blue-RGB);
}

.category.backend {
  --category-color: var(--Electro-Yellow-RGB);
}

.category.fullstack {
  --category-color: var(--Electro-Forest-Green-RGB);
}

.category.devops {
  --category-color: var(--Electro-Red-RGB);
}

.category.music {
  --category-color: var(--Electro-Purple-RGB);
}

.category.personal {
  --category-color: var(--Electro-Orange-RGB);
}

.category:hover {
  background-color: rgba(var(--category-color), 0.5);
}

.category.active {
  background-color: rgba(var(--category-color), 1);
}

.post-by-cat {
  margin: 0;
}

/* Post Cards */
.post {
  align-self: stretch;
  min-height: 200px;
  padding: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #000 0%, #121212 100%);
  background-blend-mode: hard-light;
  border-radius: 12px;
  border: 1px solid #363636;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.4s ease;
}

.post:hover {
  transform: scale(1.03);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
}

.post-content-index {
  display: flex;
  padding: 0.8rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 10px;
  box-sizing: border-box;
}

.post-content-index p {
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  text-align: left;
  margin: 0;
}

/* Date inside the post */
.post .date-text {
  text-align: center;
  color: #0DAE5E;
  font-size: 12px;
  font-family: Unbounded, sans-serif;
  font-weight: 300;
  width: 100%;
}

/* Title inside the post */
.post .title-text {
  text-align: center;
  border: none;
  color: whitesmoke;
  font-size: 24px;
  font-family: Unbounded, sans-serif;
  font-weight: 500;
  word-wrap: break-word;
  width: 100%;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}

.post .title-text:hover {
  text-decoration: underline;
}

/* Read More link wrapper */
.post .read-more,
.post .read-more:visited {
  color: #0DAE5E;
  text-decoration: none;
  transition: background 0.3s ease, border 0.3s ease-out;
}

.post .read-more:hover {
  text-decoration: underline;
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 2px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
  color: white;
}

/* "Read More" button styling to mimic the snippet */
.post .read-more {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #363636;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  background: transparent;
  margin-top: 10px;
}

/* Load More Button */
.load-more-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.load-more {
  padding: 10px 20px;
  background: #0DAE5E;
  border: 1px solid #363636;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.4s ease, background 0.3s ease, outline 0.3s ease;
}

.load-more-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}

.load-more:hover .load-more-icon {
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(1px); 
  }
  50% {
    transform: translateY(-1px);
  }
}

.load-more:hover {
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E); 
  background: rgba(13, 174, 94, 0.8);
  outline: 2px solid rgba(13, 174, 94, 0.5); 
  outline-offset: 2px;
  box-shadow: 0px 0px 60px #0DAE5E;
}

.load-more-text {
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.nothing-here-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.nothing-here-icon {
  width: 140px;
  height: 140px;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.nothing-here-title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: whitesmoke;
  word-wrap: break-word;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
}

.nothing-here-description {
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 300px;
  word-wrap: break-word;
  opacity: 0.8;
}


@media (max-width: 600px) {
  .welcome-section {
    flex-direction: column-reverse;
    align-items: center;
    padding: 10px 0 0 0;
    margin-bottom: 0;
    border: none;
  }

  .welcome-text {
    max-width: auto;
  }

  .welcome-img {
    width: 120px;
    height: 120px;
  }

  .nothing-here-container {
    flex-direction: column;
  }

  .nothing-here-title {
    font-size: 1.5rem;
  }

  .nothing-here-icon {
    width: 100px;
    height: 100px;
  }
}
.highlight table td { padding: 5px; }
.highlight table pre { margin: 0; }
.highlight .gh {
  color: #999999;
}
.highlight .sr {
  color: #f6aa11;
}
.highlight .go {
  color: #888888;
}
.highlight .gp {
  color: #555555;
}
.highlight .ge {
  font-style: italic;
}
.highlight .ges {
  font-weight: bold;
  font-style: italic;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaaaaa;
}
.highlight .nb {
  color: #f6aa11;
}
.highlight .cm {
  color: #75715e;
}
.highlight .cp {
  color: #75715e;
}
.highlight .c1 {
  color: #75715e;
}
.highlight .cs {
  color: #75715e;
}
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
  color: #75715e;
}
.highlight .err {
  color: #960050;
}
.highlight .gr {
  color: #960050;
}
.highlight .gt {
  color: #960050;
}
.highlight .gd {
  color: #49483e;
}
.highlight .gi {
  color: #49483e;
}
.highlight .kc {
  color: #66d9ef;
}
.highlight .kd {
  color: #66d9ef;
}
.highlight .kr {
  color: #66d9ef;
}
.highlight .no {
  color: #66d9ef;
}
.highlight .kt {
  color: #66d9ef;
}
.highlight .mf {
  color: #ae81ff;
}
.highlight .mh {
  color: #ae81ff;
}
.highlight .il {
  color: #ae81ff;
}
.highlight .mi {
  color: #ae81ff;
}
.highlight .mo {
  color: #ae81ff;
}
.highlight .m, .highlight .mb, .highlight .mx {
  color: #ae81ff;
}
.highlight .sc {
  color: #ae81ff;
}
.highlight .se {
  color: #ae81ff;
}
.highlight .ss {
  color: #ae81ff;
}
.highlight .sd {
  color: #e6db74;
}
.highlight .s2 {
  color: #e6db74;
}
.highlight .sb {
  color: #e6db74;
}
.highlight .sh {
  color: #e6db74;
}
.highlight .si {
  color: #e6db74;
}
.highlight .sx {
  color: #e6db74;
}
.highlight .s1 {
  color: #e6db74;
}
.highlight .s, .highlight .sa, .highlight .dl {
  color: #e6db74;
}
.highlight .na {
  color: #a6e22e;
}
.highlight .nc {
  color: #a6e22e;
}
.highlight .nd {
  color: #a6e22e;
}
.highlight .ne {
  color: #a6e22e;
}
.highlight .nf, .highlight .fm {
  color: #a6e22e;
}
.highlight .vc {
  color: #ffffff;
  background-color: #272822;
}
.highlight .nn {
  color: #ffffff;
  background-color: #272822;
}
.highlight .nl {
  color: #ffffff;
  background-color: #272822;
}
.highlight .ni {
  color: #ffffff;
  background-color: #272822;
}
.highlight .bp {
  color: #ffffff;
  background-color: #272822;
}
.highlight .vg {
  color: #ffffff;
  background-color: #272822;
}
.highlight .vi {
  color: #ffffff;
  background-color: #272822;
}
.highlight .nv, .highlight .vm {
  color: #ffffff;
  background-color: #272822;
}
.highlight .w {
  color: #ffffff;
  background-color: #272822;
}
.highlight {
  color: #ffffff;
  background-color: #272822;
}
.highlight .n, .highlight .py, .highlight .nx {
  color: #ffffff;
  background-color: #272822;
}
.highlight .ow {
  color: #f92672;
}
.highlight .nt {
  color: #f92672;
}
.highlight .k, .highlight .kv {
  color: #f92672;
}
.highlight .kn {
  color: #f92672;
}
.highlight .kp {
  color: #f92672;
}
.highlight .o {
  color: #f92672;
}
.tag-page-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  margin: 1rem 0 0 0;
  box-sizing: border-box;
}

.tag-page-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.selected-tag {
  color: whitesmoke;
  font-family: Unbounded;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  margin: 0;
  word-wrap: break-word;
}

.tag-page-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.other-tag-link {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--Electro-Forest-Green, #0DAE5E);
  /* etc. */
}

.other-tag-link:hover {
  text-decoration: underline;
}

.tag-page__post-tag {
  padding: 4px 12px;
  color: var(--Electro-Forest-Green);
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.tag-page__post-tag:hover {
  transform: translateY(-2px);
  text-decoration: underline;
  color: whitesmoke;
}

@media (max-width: 600px) {
  .tag-page-container {
    flex-direction: column;
    align-items: center;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *











 */
:root {
  --Gray: #363636;
  --Light-Gray: #CECDCC;
  --White: #FFFFFF;
  --Electro-Red: #F42053;
  --Electro-Blue: #30C2F6;
  --Electro-Forest-Green: #0DAE5E;
  --Electro-Pink: #C225E0;
  --Electro-Yellow: #F0AA05;
  --Electro-Purple: #6027FF;
  --Electro-Orange: #F68C30;
  --Login-Gradient: radial-gradient(50% 50% at 50% 50%, #000 0%, #121212 100%);
  --Electro-Red-Gradient: linear-gradient(0deg, rgba(244, 32, 83, 0.5) 0%, rgba(244, 32, 83) 100%);
  --Gray-Gradient: linear-gradient(0deg, rgba(123, 123, 123, 0.5) 0%, rgb(147, 147, 147) 100%);
  --Green-Glow: rgba(13, 174, 94, 1);
  --Box-Shadow-Green-Glow: 0px 10px 100px -40px var(--Green-Glow);
  --Black-Gradient-Reverse: linear-gradient(0deg, #000 0%, #121212 100%);

  --Electro-Red-RGB: 244, 32, 83;      /* #F42053 */
  --Electro-Blue-RGB: 48, 194, 246;    /* #30C2F6 */
  --Electro-Forest-Green-RGB: 13, 174, 94; /* #0DAE5E */
  --Electro-Pink-RGB: 194, 37, 224;    /* #C225E0 */
  --Electro-Yellow-RGB: 240, 170, 5;   /* #F0AA05 */
  --Electro-Purple-RGB: 96, 39, 255;   /* #6027FF */
  --Electro-Orange-RGB: 246, 140, 48;  /* #F68C30 */
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  color: var(--White, #FFF);
}

body {
  display: flex;
  padding: 1rem 1rem 0 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: auto;
  background: none;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--Black-Gradient, linear-gradient(180deg, #000 0%, #121212 100%));
  z-index: -1;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.app-flash-notification {
  background: radial-gradient(50% 50% at 50% 50%, #1a1a1a 0%, #121212 100%);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--Electro-Forest-Green);
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.app-flash-notification p {
  margin: 0;
}

.app-flash-notification.notice {
  border: 1px solid var(--Electro-Forest-Green);
}
.app-flash-notification.alert {
  border: 1px solid var(--Electro-Red);
}

.app-flash-notification.fade-out {
  transform: translate(-50%, -100%);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.error-messages {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, #1a1a1a 0%, #121212 100%);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--Electro-Red);
  color: whitesmoke;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 90%;
  width: 600px;
  z-index: 100;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 1;
}

.error-messages h2 {
  font-weight: bold;
  margin: 0;
}

.error-messages ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.error-messages.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.tooltip {
  max-width: 200px;
  word-wrap: break-word;
  word-break: break-word;
  text-align: center;
  position: absolute;
  background-color: var(--Gray);
  color: whitesmoke;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1000;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tooltip.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tooltip-carrot {
  position: absolute;
  bottom: -8px; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--Gray);
}

/* YouTube iframe Responsive container */
.be-responsive-youtoob {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.scroll-to-top {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  background: rgba(54, 54, 54, 0.7);
  color: var(--White);
  padding: 0.5rem;
  border: 1px solid var(--Electro-Forest-Green, #0DAE5E);
  border-radius: 2rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 100;
  transition: box-shadow 0.4s ease, background 0.3s ease, outline 0.3s ease;
}

.scroll-to-top__icon {
  color: whitesmoke;
  width: 28px;
  height: 28px;
}

.scroll-to-top.hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.scroll-to-top:not(.hidden) {
  opacity: 1;
  transform: scale(1);
}

.scroll-to-top:hover {
  background: var(--Electro-Forest-Green);
  box-shadow: 0px 0px 60px #0DAE5E;
}
