#div_task_notes {
	border: 1px solid black;
	position: fixed;
	z-index: 102;
	background-color: white;
	padding: 10px;
	width: 375px;
	top: 50px;
	right: 0px;
}

#icon_task_notifications {
    background-image: url(/img/icons/notification_task_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    width: 28px;
    height: 28px;
    cursor: pointer;
    float: right;
    margin: 5px 24px 5px 0px;
}

#icon_task_notifications p {
    display: none;
}

#task_notification_badge {
    position: absolute !important;
    top: -4px !important;
    right: -6px !important;
    background-color: #ff4444 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 14px !important;
    height: 14px !important;
    font-size: 9px !important;
    font-weight: bold !important;
    text-align: center !important;
    line-height: 14px !important;
    border: 1px solid white !important;
    box-shadow: 0 0 2px rgba(0,0,0,0.3) !important;
    z-index: 10 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Estilos para os botões de notificação */
#div_task_notes button {
    transition: background-color 0.2s ease;
}

#div_task_notes button:hover {
    background-color: #e9ecef !important;
    border-color: #adb5bd !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Estilos para os checkboxes das preferências */
#div_task_notes input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

#div_task_notes label {
    cursor: pointer;
}

/* Estilos para notificações clicáveis */
#div_task_notes .notification-item-clickable {
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

#div_task_notes .notification-item-clickable:hover {
    background-color: #e6f3ff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#div_task_notes .notification-item-clickable:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
