.toggadno-wrapper {
	/* No default styles, we just wrap. */
}

/* Container for grouped notices */
.toggadno-group {
	margin: 10px 0;
	border: 1px solid #ccd0d4;
	background: #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}

.toggadno-group-header {
	padding: 10px 15px;
	background: #f8f9fa;
	border-bottom: 1px solid #ccd0d4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.toggadno-group-title {
	font-weight: 600;
	color: #1d2327;
}

.toggadno-group-actions {
	font-size: 13px;
}

.toggadno-group-content {
	padding: 0;
	display: none;
	/* Hidden by default */
}

.toggadno-group-content.open {
	display: block;
}

.toggadno-notice-item {
	padding: 10px 15px;
	border-bottom: 1px solid #f0f0f1;
	position: relative;
}

.toggadno-notice-item:last-child {
	border-bottom: none;
}

/* Adjust WP default notice styles when inside our wrapper */
.toggadno-notice-item .notice,
.toggadno-notice-item .updated,
.toggadno-notice-item .error {
	margin: 0 !important;
	box-shadow: none !important;
	border-left: 4px solid #fff;
	/* Reset border */
}

/* Custom action buttons */
.toggadno-actions {
	margin-top: 8px;
	text-align: right;
}

.toggadno-btn-snooze,
.toggadno-btn-dismiss {
	color: #2271b1;
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
	margin-left: 10px;
	font-size: 12px;
}

.toggadno-btn-snooze:hover,
.toggadno-btn-dismiss:hover {
	color: #135e96;
}