/* Estilo para los tres puntitos verticales */
.contact-options {
    position: absolute;
    top: 20px;
    right: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Estilo para cada punto */
.dot {
    width: 3px;
    height: 3px;
    background-color: #666;
    border-radius: 50%;
    margin: 2px 0; /* Espaciado entre los puntos */
}

/* Menú desplegable para las opciones del contacto */
.contact-menu {
    display: none;
    position: absolute;
    top: 30px;
    right: 10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    z-index: 1000;
}

.contact-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-menu ul li {
    padding: 8px;
    cursor: pointer;
}

.contact-menu ul li:hover {
    background-color: #f0f0f0;
}

.suggestion-box {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
    font-size: 14px;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}
.notification-icon {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
}

.notification-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 4px;
    font-size: 6px;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    text-align: left;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.notification-item:hover {
    background-color: #f5f5f5;
}
