.menu-widget {
    margin-bottom: 20px;
}

.menu-header {
    margin-bottom: 10px;
}

.menu-header h3 {
    margin: 0;
}

.menu-header p {
    margin: 0;
}

.menu-list {
    list-style-type: none;
    padding: 0;
}

.menu-list div {
    cursor: var(--cursor-type, pointer);
    margin-bottom: var(--item-spacing, 5px);
    border: 1px solid #ccc;

    background-color: var(--background-color, #ffffff);
    color: var(--text-color, #000000);

    padding: 10px;
    position: relative;
    display: flex;


}

.menu-list div span {
    display: flex;

}

.menu-list div:hover {
    background-color: var(--hover-background-color, #f0f0f0);
}

.menu-list div.active {
    background-color: var(--active-background-color, #e0e0e0);
}

.menu-list div {
    font-family: var(--item-font-family);
    font-size: var(--item-font-size);
    font-weight: var(--item-font-weight);
    line-height: var(--item-line-height);
}

.menu-list div i {
    font-size: var(--icon-size, 16px);
}

.ecp-comment-form {
    margin-bottom: 20px;
}

.ecp-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.ecp-submit-button {
    background-color: #0073aa;
    color: #fff;
    border: 1px solid #0073aa;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.ecp-submit-button:hover {
    background-color: #005177;
}

.ecp-delete-all-button {
    background-color: #d9534f;
    color: #fff;
    border: 1px solid #d9534f;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.ecp-delete-all-button:hover {
    background-color: #c9302c;
}

.ecp-comment {
    margin-bottom: 15px;
}

.ecp-comment a {
    color: #d9534f;
}
.ecp-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
}
.ecp-comment p {
    display: flex;
    align-items: center;
}

.ecp-comment-date {
    margin-left: 10px;
    font-style: italic;
    color: #555;
}
.ecp-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #333;
    color: #fff;
    border-radius: 5px;
    z-index: 9999;
    display: none;
    font-weight: bold; /* Texto em negrito */
}



