/* Contenedor Principal */
#menu_responsive {
    background: #ffffff;
    position: fixed;
    left: -100%;
    top: 0px;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Contenedor de opciones (parte superior) */
.content_opctions {
    flex-grow: 1;
    /* Empuja el login hacia abajo */
    display: flex;
    flex-direction: column;
}

.logo_cont {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 25px 20px;
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.logo_cont img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    background-color: #eee;
    border-radius: 6px;
}

.logo_cont span {
    color: #d32f2f;
}

/* Opciones de menú */
.options {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.options a{
    font-size: 15px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
}

.login {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background-color: #d32f2f;
    margin: 20px;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s active;
}

.login:hover {
    background-color: #b71c1c;
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

.login:active {
    transform: scale(0.98);
}

.options span,
.login span {
    display: block;
    width: 100%;
}

#menu_icon{

    background-color: #dfdfdf;
    /* padding: 10px; */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

 @media (min-width: 1000px) {
      #menu_icon {
          display: none;
      }
  }