// SCSS für die Notification-Center-Tabelle

.adpresso-notifications-table {

	// Spaltenbreiten
	.adpresso-col-type {
		width: 40px;
		text-align: center;
	}
	.adpresso-col-date {
		width: 15%;
	}
	.adpresso-col-actions {
		width: 10%;
	}

	// Icon-Styling
	.adpresso-col-type .dashicons {
		font-size: 24px;
		line-height: 1.2;
	}

	// Farben für die Icons (basierend auf Standard-WordPress-Farben)
	.is-info .dashicons {
		color: #007cba;
	}
	.is-success .dashicons {
		color: #00a32a;
	}
	.is-warning .dashicons {
		color: #dba617;
	}
	.is-error .dashicons {
		color: #d63638;
	}

	// "Dismiss"-Button wie ein WP-Link-Button stylen
	.adpresso-dismiss-button {
		color: #b32d2e; // WP "Delete" Rot
		&:hover {
			color: #711a1a;
		}
	}
}
