

:root {
  /* Variables para modo oscuro (default) */
  --bg-color: rgba(40, 40, 40, 0.95);
  --bg-hover: rgba(50, 50, 50, 0.95);
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-color: rgba(128, 128, 128, 0.3);
  --hover-bg: rgba(255, 255, 255, 0.1);
  --hover-bg-strong: rgba(255, 255, 255, 0.2);
  --checkbox-bg: rgba(255, 255, 255, 0.8);
  --checkbox-check-color: rgba(40, 40, 40, 0.95);
}

/* Modo claro */
body.light-mode {
  /* Invertir los colores para modo claro */
  --bg-color: rgba(255, 255, 255, 0.95);
  --bg-hover: rgba(245, 245, 245, 0.95);
  --text-color: #333333;
  --text-secondary: rgba(0, 0, 0, 0.8);
  --text-muted: rgba(0, 0, 0, 0.5);
  --border-color: rgba(0, 0, 0, 0.2);
  --hover-bg: rgba(0, 0, 0, 0.05);
  --hover-bg-strong: rgba(0, 0, 0, 0.1);
  --checkbox-bg: rgba(0, 0, 0, 0.8);
  --checkbox-check-color: rgba(255, 255, 255, 0.95);
}


/* Blog Styles */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 1600px) {
    .container {
      max-width: 1440px;
    }
  }
  
  /* Header Styles */
  .blog-header {
    background-color: #1a1a1a;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-nav li {
    margin-left: 20px;
  }
  
  .main-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .main-nav a:hover, .main-nav a.active {
    color: #ffffff;
  }
  
  /* Blog Main Content */
  .blog-main {
 
  }
  
  .blog-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    min-height: 50vh;
  }

  
  .blog-post {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(68, 148, 172, 0.3);
  }
  
  .post-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  
  .post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-post:hover .post-image {
    transform: scale(1.05);
  }
  
  .post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .post-date {
    color: #999999;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .post-date::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z'/%3E%3C/svg%3E");
    background-size: contain;
    margin-right: 6px;
  }
  
  .post-title {
    font-size: 22px;
    margin: 0 0 15px;
    line-height: 1.3;
  }
  
  .post-excerpt {
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .read-more {
    display: inline-block;
    color: #4494ac;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-right: 22px;
    align-self: flex-start;
    transition: transform 0.2s ease;
  }
  
  .read-more::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
  }
  
  .read-more:hover {
    transform: translateX(3px);
  }
  
  .read-more:hover::after {
    transform: translateY(-50%) translateX(3px);
  }
  
  /* Single Post Page */
  .single-post {
    margin: 60px auto;
    /* background-color: #1e1e1e; */
    border-radius: 12px;
    /* padding: 40px; */

  }
  
  .post-header {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .post-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .post-meta {
    color: #999999;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
  }
  
  .post-meta::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z'/%3E%3C/svg%3E");
    background-size: contain;
    margin-right: 8px;
  }
  
  .post-featured-image-container {
    margin: -40px -40px 30px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }
  
  .post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
  }
  
  .post-body {
    font-size: 18px;
    line-height: 1.8;
  }
  
  .post-body h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .post-body h3 {
    font-size: 22px;
    margin: 30px 0 30px;
  }
  
  .post-body p {
    margin-bottom: 25px;
  }
  
  .post-body a {
    color: #4494ac;
    text-decoration: none;
    border-bottom: 1px dotted #4494ac;
    transition: border-bottom 0.2s;
  }
  
  .post-body a:hover {
    border-bottom: 1px solid #4494ac;
  }
  
  .post-body blockquote {
    border-left: 4px solid #4494ac;
    padding: 15px 20px;
    margin: 30px 0;
    background-color: rgba(68, 148, 172, 0.1);
    font-style: italic;
  }
  
  .post-body ul, .post-body ol {
    margin: 20px 0 20px 20px;
  }
  
  .post-body li {
    margin-bottom: 10px;
  }
  
  .post-body code {
    background-color: #2a2a2a;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
  }
  
  .post-body pre {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
  }
  
  .post-body pre code {
    background-color: transparent;
    padding: 0;
  }
  
  .post-navigation-top {

    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
  }

  .post-navigation-bottom {

    padding-top: 30px;
    display: flex;
    justify-content: space-between;
  }


  
  .back-to-blog {
    display: inline-flex;
    align-items: center;
    color: #4494ac;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
  }
  
  .back-to-blog:hover {
    transform: translateX(-3px);
  }

  .next-post {
    display: inline-flex;
    align-items: center;
    color: #4494ac;
    text-decoration: none;
    font-weight: bold;
    text-align: right;
  }

  .next-post:hover {
    transform: translateX(-3px);
  }




  
/* Estilos para imágenes en posts */
  .post-featured-image {
    max-width: 100%;
    height: 50px;
    display: block;
    border-radius: 8px;
    filter: blur(2px);
  }

  .post-body img {
    max-width: 100%;
    height: auto;
    display: block;
    /* margin: 20px auto; */
 
  }

  .post-body .small-image {
    width: 30%;
    height: auto;
  }

  .post-body .medium-image {
    width: 50%;
    height: auto;
  }

  .post-body .wide-image {
    width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .post-body .wide-image {
      width: 100%;
    }

    .post-body .small-image {
      width: 100%;
      height: auto;
    }
  
    .post-body .medium-image {
      width: 100%;
      height: auto;
    }

  }
  


  /* Contenedor para imágenes grandes que necesitan atención especial */
  .image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    /* margin: 30px 0; */
    text-align: center;
    border-radius: 8px;

  }

  .image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }





  .image-caption {
    font-size: 0.7em;
    color: #999;
    text-align: center;
    margin-top: 0px;
    font-style: italic;
    /* padding: 0 15px 15px; */
    /* background-color: rgba(0, 0, 0, 0.1); */
    /* border-radius: 0 0 8px 8px; */
  }

  /* Clases adicionales para imágenes */

  .image-container{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .image-container.wide {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .image-container.medium {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .image-container.small {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .image-container.border {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .image-container.shadow {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  /* Tablas */
  .post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #1e1e1e;
    border-radius: 8px;
  }
  
  /* Contenedor con scroll para tablas */
  .table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;

    border-radius: 8px;
    background-color: #1e1e1e;

  }
  
  .post-body th {
    background-color: #2a2a2a;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
  }
  
  .post-body td {
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  
  .post-body tr:last-child td {
    border-bottom: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .blog-posts {
      grid-template-columns: 1fr;
    }
    
    .blog-title {
      font-size: 28px;
    }
    
    .post-header h1 {
      font-size: 28px;
    }
  }
  
  /* Paginación */
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    list-style: none;
    padding: 0;
  }
  
  .pagination li {
    margin: 0 5px;
  }
  
  .pagination a {
    display: block;
    padding: 8px 12px;
    background-color: #1e1e1e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .pagination a:hover {
    background-color: #333333;
  }
  
  .pagination .active a {
    background-color: #4494ac;
  }
  
  /* Cookie Notice */
  .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cookie-text {
    flex: 1;
    margin-right: 20px;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
  }
  
  .btn {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-weight: bold;
  }
  
  .btn-outline-light {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
  }
  
  .btn-light {
    background: #ffffff;
    color: #121212;
  }
  
/* Personalización de la barra de desplazamiento */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: black;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #1e1e1e;
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e1e1e;
}

/* Para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1e1e1e black;
}

/* Estilos para el footer */
.blog-footer {
  background-color: #1a1a1a;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4494ac;
}

.footer-copyright {
  color: #999999;
  font-size: 14px;
}

/* Estilos para el tiempo de lectura */
.reading-time {
  display: inline-flex;
  align-items: center;
  color: #999999;
  font-size: 14px;
}

.post-meta-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #999999;
}

/* Estilos para la introducción del blog */
.blog-intro {
  text-align: center;
  margin-bottom: 50px;
}

.blog-description {
  max-width: 700px;
  margin: 0 auto;
  color: #cccccc;
  font-size: 18px;
}

/* Mejoras responsive */
@media (max-width: 768px) {
  .single-post {
    margin: 20px auto;
    padding: 5px;
  }
  
  .post-featured-image-container {
    margin: -20px -20px 20px;
  }
  
  .image-container.small,
  .image-container.medium {
    width: 100%;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 15px;
  }
}

/* Estilos para botones de compartir en redes sociales - Versión Dark Sutil */
.social-share-buttons {
  display: flex;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.share-label {
  font-size: 14px;
  color: #888;
  margin-right: 12px;
  font-weight: 300;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-right: 6px;
  background-color: #222;
  border: 1px solid #333;
}

.social-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.social-button i {
  font-size: 14px;
}

.social-button.twitter:hover {
  background-color: #1a2733;
  border-color: #1DA1F2;
  color: #1DA1F2;
}

.social-button.facebook:hover {
  background-color: #1a2133;
  border-color: #4267B2;
  color: #4267B2;
}

.social-button.linkedin:hover {
  background-color: #1a2430;
  border-color: #0077B5;
  color: #0077B5;
}

.social-button.whatsapp:hover {
  background-color: #1a2a1f;
  border-color: #25D366;
  color: #25D366;
}

.social-button.email:hover {
  background-color: #2a2a2a;
  border-color: #999;
  color: #fff;
}

/* Botones de compartir al final del post */
.bottom-share {
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: 6px;
  margin: 30px 0;
  border: 1px solid #333;
}

.bottom-share .social-button {
  width: auto;
  height: auto;
  border-radius: 4px;
  padding: 6px 12px;
  margin-right: 8px;
  margin-top: 8px;
  background-color: #222;
}

.bottom-share .social-button i {
  margin-right: 6px;
}

/* Estilos responsivos para botones de compartir */
@media (max-width: 768px) {
  .social-share-buttons {
    justify-content: flex-start;
  }
  
  .bottom-share .social-button {
    flex: 1 1 auto;
    text-align: center;
    margin-right: 4px;
    margin-left: 4px;
    font-size: 13px;
    padding: 8px 6px;
  }
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-color);
  color: var(--text-color);
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
  min-height: 60px;
  /* Reducido para ocupar menos espacio vertical */
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 5px;
  /* Reducido significativamente el padding */
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  /* Reducido el gap */
  flex-wrap: nowrap;
  /* Evitar que se envuelva en pantallas medianas */
  max-width: 1800px;
  /* Aumentado para usar más espacio horizontal */
  margin-left: 20px;
  margin-right: 20px;

  margin-bottom: 10px;
}

.cookie-text {
  flex: 4;
  /* Aumentado para dar aún más espacio al texto */
  font-size: 0.85rem;
  /* Reducido ligeramente */
  color: var(--text-secondary);
  line-height: 1.3;
  /* Reducido para compactar más */
  padding-left: 10px;
  /* Añadido un poco de padding izquierdo */
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
  flex: 0 0 auto;
  padding-right: 10px;
  /* Añadido un poco de padding derecho */
}

.cookie-buttons button {
  background-color: transparent;
  border: 1px solid var(--border-color);
  /* Reducido el grosor del borde */
  border-radius: 8px;
  /* Reducido ligeramente */
  padding: 6px 12px;
  /* Reducido el padding */
  cursor: pointer;
  color: var(--text-color);
  font-weight: bold;
  font-size: 13px;
  /* Reducido ligeramente */
  transition: background-color 0.2s, color 0.2s;
}

.cookie-buttons button:hover {
  background-color: var(--hover-bg);
  border-color: var(--text-secondary);
}

.cookie-buttons button.primary {
  background-color: var(--hover-bg-strong);
}

.cookie-buttons button.primary:hover {
  background-color: var(--hover-bg);
}

/* Modal de Cookies */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

.cookie-modal-content {
  background-color: var(--bg-color);
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  width: 80%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--text-color);
  background-color: var(--hover-bg);
}

.cookie-option {
  margin: 20px 0;
  padding: 15px;
  border-radius: 8px;
  background-color: var(--bg-hover);
  border: 1px solid var(--border-color);
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
}

.cookie-option input[type="checkbox"] {
  accent-color: var(--text-secondary);
  width: 18px;
  height: 18px;
}

.cookie-option p {
  margin: 5px 0 0 28px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

#saveCookiePreferences {
  width: 100%;
  margin-top: 20px;
  background-color: transparent;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  color: var(--text-color);
  font-weight: bold;
  font-size: medium;
  transition: background-color 0.2s, color 0.2s;
}

#saveCookiePreferences:hover {
  background-color: var(--hover-bg-strong);
}

/* Light mode adjustments */
.light-mode .cookie-consent,
.light-mode .cookie-modal-content {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.light-mode .cookie-option {
  background-color: var(--bg-hover);
}

.light-mode .cookie-text,
.light-mode .cookie-option p {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 0 5px;
    /* Reducido el padding */
  }

  .cookie-text {
    max-width: 100%;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    /* Reducido el margen */
    padding-right: 0;
    /* Eliminar padding en móvil */
  }

  .cookie-modal-content {
    width: 95%;
    /* Aumentado para usar más espacio */
    margin: 5% auto;
    padding: 15px 10px;
    /* Reducido el padding */
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 2rem 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Nuevos estilos para la navbar */
.custom-navbar {
  position: fixed;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 8px;
  z-index: 1000;
  font-size: 12px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
}

.navbar-links {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;

}

.navbar-link {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-link:hover {
  color: #4dabf7;
}



.navbar-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}



/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .custom-navbar {
    bottom: 35px;
    padding: 3px 10px;
    font-size: 10px;
  }
  

  .action-buttons-container {
    bottom: 35px;
  }
}


.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.category-badge {
  display: inline-block;
  padding: 0.2rem 0.2rem;
  background-color: #333;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #555;
}
/* 
.category-badge:hover {
  background-color: #444;
} */