#notification-container {
	background-color: #25657A;
	border-radius: 2px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
	height: 10px;
	padding: 3px;
	position: absolute;
	right: 139px !important;
	left: unset !important;
	top: 6px;
	width: auto;
}

#topnotification {
	line-height: 10px;
}

#topnotification a.notification-count {
	color: #ffffff;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
}

#topnotification a.notification-count:hover {
	color: #ffffff;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}

#topnotification a.menu-open {
	outline: none;
}

#notification-list {
	border-radius: 0;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
	color: #666666;
	display: none;
	font-size: 12px;
	padding: 0;
	position: absolute;
	right: 56px;
	text-align: left;
	top: 55px;
	width: 280px;
	z-index: 100;
}

#tblNotification img {
	cursor: pointer;
}

#tblNotification {
	border-collapse: collapse;
	/* 'cellspacing' equivalent */
}

.notetr {
	color: rgb(102, 102, 102) !important;
	background-color: rgb(255, 255, 255) !important;
}

#tblNotification td,
#tblNotification tr {
	padding: 9px 7px 7px 12px;
}

#tblNotification tr:hover {
	background-color: #f3f3f3 !important;
	color: #000 !important;
	cursor: pointer;
}

#tblNotification .td-left,
#tblNotification .td-right {
	border-bottom: 1px solid #ccc;
}

#message-count {
	background: none repeat scroll 0 0 #FFFFFF;
	border-radius: 4px 4px 4px 4px;
	color: #FC7371;
	font-size: 9px;
	font-weight: bold;
	padding: 1px;
	position: absolute;
	right: 1px;
	top: 3px;
}

#tblNotification .headerdivtoptd1,
#tblNotification .headerdivtoptd2 {
	background: #F3F3F3 none repeat scroll 0 0;
	border-radius: 0;
}

#tblNotification .headerdivbottomtd1,
#tblNotification .headerdivbottomtd2 {
	background: #F3F3F3 none repeat scroll 0 0;
	border-radius: 0;
}

#tblNotification:after {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: rgba(136, 183, 213, 0) rgba(136, 183, 213, 0) #F3F3F3;
	border-image: none;
	border-style: solid;
	border-width: 16px;
	bottom: 100%;
	content: " ";
	height: 0;
	margin-left: -30px;
	pointer-events: none;
	position: absolute;
	right: 4%;
	width: 0;
}

/*Ruchi Notification Changes*/
.headerdivtoptd1 {
	background-color: #A4A4A4;
	border-radius: 5px 0 0 0;
}

.headerdivtoptd2 {
	background-color: #A4A4A4;
	border-radius: 0 5px 0 0;
}

.headerdivbottomtd1 {
	background-color: #A4A4A4;
	border-radius: 0 0 0 5px;
}

.headerdivbottomtd2 {
	background-color: #A4A4A4;
	border-radius: 0 0 5px 0;
}

/*Ruchi Notification Changes*/

/* Snackbar Styles */
.snackbar {
	visibility: hidden;
	min-width: 300px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 16px;
	position: fixed;
	z-index: 1000;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	font-size: 14px;
	font-family: Arial, sans-serif;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
	opacity: 0;
}

.snackbar.show {
	visibility: visible;
	opacity: 1;
}

.snackbar.success {
	background-color: #4CAF50;
}

.snackbar.error {
	background-color: #f44336;
}

.snackbar.warning {
	background-color: #ff9800;
}

.snackbar.info {
	background-color: #2196F3;
}

.snackbar .snackbar-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.snackbar .snackbar-icon {
	font-size: 18px;
}

.snackbar .snackbar-message {
	flex: 1;
}

.snackbar .snackbar-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	padding: 0;
	margin-left: 10px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.snackbar .snackbar-close:hover {
	opacity: 1;
}

/* Snackbar state classes */
.snackbar .hide {
	display: none;
}

.snackbar .show-state {
	display: block;
}

/* Snackbar button styling */
.snackbar .btn {
	background-color: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 6px 12px;
	margin: 0 8px;
	border-radius: 3px;
	text-decoration: none;
	font-size: 12px;
	transition: background-color 0.2s;
}

.snackbar .btn:hover {
	background-color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
	color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.snackbar {
		min-width: 90%;
		left: 5%;
		transform: none;
		bottom: 20px;
		font-size: 13px;
		padding: 12px;
	}
}