#custom-notification {
    position: fixed !important;
    top: 80px !important; /* Adjust as needed */
    right: 20px !important; /* Adjust as needed */
    background-color: #ffd700 !important;
    color: #000 !important;
    padding: 10px 20px !important;
    border-radius: 15px !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important;
    font-size: 16px !important;
    z-index: 10000 !important;
    text-align: center !important;
    max-width: 300px !important;
    border: 1px solid #ccc !important;
}

#dismiss-notification {
    font-size: 16px;
    color: #000;
    vertical-align: middle; /* Aligns with the text */
}

#dismiss-notification:hover {
    color: #333;
}

/* Remove the speech bubble tail from the notification */
#custom-notification::after {
    display: none;
}

#woocommerce-task-notification {
    background-color: #FFA500; /* Orange background color */
    color: white; /* White text color */
    padding: 15px;
    border-left: 4px solid #FF8C00; /* Darker shade of orange for the border */
    margin: 20px 0;
    position: relative;
    width: auto; /* Adjust the width as needed */
}

.woocommerce-info {
    background-color: #FFA500; /* Orange background color */
    color: white; /* White text color */
    padding: 15px;
    border-left: 4px solid #FF8C00; /* Darker shade of orange for the border */
    margin: 20px 0;
}

/* New rule to ensure links are underlined */
#woocommerce-task-notification a {
    text-decoration: underline;
    color: white; /* Match the link color to the text color */
}