#notification-form-container {
    margin: 10px 0;
    text-align: center;
}

#notification-form input[type="text"] {
    padding: 10px;
    font-size: 16px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 70%;
}

#notification-form button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #0A6D4A;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

#notification-form button:hover {
    background-color: #4cae4c;
}

#cnb-notification-bar {
    padding: 10px;
    width: 80%;
    z-index: 9999;
    position: relative;
	margin: 0 auto;
}

.cnb-notification {
    margin-bottom: 10px;
    padding: 15px;
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: relative;
    font-size: 16px; /* Adjust font size */
    color: #333; /* Darker text color */
    transition: all 0.3s ease; /* Smooth transition */
}

.cnb-notification:hover {
    background-color: #f1f1f1; /* Slightly darker on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.cnb-close-btn {
    position: absolute;
    top: 50%;
    right: 10px; /* Positioning close button to the right */
    width: 24px;
    height: 24px;
    background-color: #999; /* Gray background */
    color: #fff; /* White color for the X */
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%; /* Circle shape */
    cursor: pointer;
    transform: translateY(-50%); /* Center vertically */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for background color and transform */
}

.cnb-close-btn:hover {
    background-color: #e74c3c; /* Red background on hover */
    transform: scale(1.2) translateY(-50%); /* Slightly larger on hover */
}

@media (max-width: 600px) {
    .cnb-notification {
        font-size: 14px; /* Smaller font size on small screens */
    }
    .cnb-close-btn {
        width: 20px;
        height: 20px;
        font-size: 14px;
        line-height: 20px;
    }
}
