/**
 * Rhino Portfolio Admin Styling & Settings Dashboard
 *
 * @package Rhino\Portfolio
 */

/* Admin Settings Wrapper */
.rhino-wrap {
	width: calc(100% - 20px);
	max-width: 100%;
	margin: 20px 20px 20px 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: #1e293b;
}

/* Header Banner */
.rhino-header {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	padding: 28px 32px;
	border-radius: 12px;
	margin-bottom: 24px;
	box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.15), 0 4px 6px -2px rgba(15, 23, 42, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.rhino-header h1 {
	color: #ffffff;
	margin: 0 0 6px 0;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	display: flex;
	align-items: center;
	gap: 10px;
}

.rhino-header p {
	margin: 0;
	opacity: 0.85;
	font-size: 14px;
}

.rhino-header-badge {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	color: #f8fafc;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Tabs Navigation */
.rhino-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	background: #ffffff;
	padding: 8px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	margin-bottom: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.rhino-tab-btn {
	background: transparent;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.rhino-tab-btn:hover {
	color: #2563eb;
	background: #f8fafc;
}

.rhino-tab-btn.active {
	background: #2563eb;
	color: #ffffff !important;
	box-shadow: 0 2px 4px rgba(37, 99, 235, 0.25);
}

/* Always highlighted About Developer tab */
.rhino-tab-btn[data-tab="about"] {
	background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%) !important;
	color: #ffffff !important;
	box-shadow: 0 2px 4px rgba(37, 99, 235, 0.25) !important;
}

/* Tab Panels */
.rhino-tab-panel {
	display: none;
}

.rhino-tab-panel.active {
	display: block;
}

/* Dashboard 2-Column Layout */
.rhino-dashboard-container {
	display: flex;
	flex-direction: row;
	gap: 24px;
	align-items: flex-start;
	width: 100%;
	box-sizing: border-box;
}

.rhino-main-content {
	flex: 1;
	min-width: 0;
	width: auto;
	box-sizing: border-box;
}

.rhino-dashboard-sidebar {
	width: 280px;
	min-width: 280px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-sizing: border-box;
}

@media (max-width: 1024px) {
	.rhino-dashboard-container {
		flex-direction: column;
	}

	.rhino-main-content {
		width: 100%;
	}

	.rhino-dashboard-sidebar {
		width: 100%;
		min-width: 0;
	}
}

/* Cards & Section Boxes */
.rhino-section-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 28px;
	margin-bottom: 28px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.rhino-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 16px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Sidebar Cards */
.rhino-sidebar-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 22px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	text-align: left;
}

.rhino-sidebar-card-support {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
	border: 2px solid #0284c7 !important;
	box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15) !important;
}

.rhino-sidebar-title {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Form Group Controls */
.rhino-form-group {
	margin-bottom: 20px;
	text-align: left;
}

.rhino-form-group label {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	color: #334155;
	margin-bottom: 8px;
}

.rhino-select,
.rhino-input {
	width: 100%;
	max-width: 500px;
	padding: 10px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 14px;
	color: #0f172a;
	background-color: #ffffff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.rhino-select:focus,
.rhino-input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
	outline: none;
}

/* Toggle Switches */
.rhino-switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
}

.rhino-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.rhino-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #cbd5e1;
	transition: .3s;
	border-radius: 24px;
}

.rhino-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .3s;
	border-radius: 50%;
}

input:checked+.rhino-slider {
	background-color: #2563eb;
}

input:checked+.rhino-slider:before {
	transform: translateX(20px);
}

/* Primary Action Buttons */
.rhino-btn-primary {
	background: #2563eb;
	color: #ffffff !important;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.1s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.25);
}

.rhino-btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	color: #ffffff !important;
}

.rhino-btn-contact {
	background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
	color: #ffffff !important;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.rhino-btn-contact:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
	color: #ffffff !important;
}

.rhino-btn-outline {
	background: transparent;
	color: #2563eb !important;
	border: 2px solid #dbeafe;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	box-sizing: border-box;
	margin-top: 10px;
	transition: background-color 0.2s ease;
}

.rhino-btn-outline:hover {
	background: #eff6ff;
	color: #1d4ed8 !important;
}

/* About Developer Section Grid */
.rhino-about-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 28px;
}

@media (max-width: 900px) {
	.rhino-about-grid {
		grid-template-columns: 1fr;
	}
}

.rhino-author-sidebar {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.rhino-avatar-ring {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	padding: 4px;
	background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
	margin: 0 auto 16px auto;
	box-shadow: 0 8px 16px -2px rgba(37, 99, 235, 0.25);
}

.rhino-avatar-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	background: #ffffff;
}

.rhino-author-name {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 4px 0;
}

.rhino-author-title {
	font-size: 13px;
	font-weight: 600;
	color: #2563eb;
	margin-bottom: 14px;
}

.rhino-author-bio {
	font-size: 13px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 20px;
}

.rhino-badge-pill {
	background: #f1f5f9;
	color: #334155;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 8px;
}

/* Services Grid */
.rhino-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.rhino-service-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 18px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.rhino-service-card:hover {
	border-color: #93c5fd;
	transform: translateY(-2px);
	background: #ffffff;
}

.rhino-service-icon {
	font-size: 24px;
	margin-bottom: 8px;
}

.rhino-service-title {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px 0;
}

.rhino-service-desc {
	font-size: 13px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

/* Custom Work CTA Banner */
.rhino-cta-banner {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	border-radius: 12px;
	padding: 28px;
	margin-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

@media (max-width: 768px) {
	.rhino-cta-banner {
		flex-direction: column;
		text-align: center;
	}
}

.rhino-cta-title {
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 6px 0;
}

.rhino-cta-text {
	color: #cbd5e1;
	font-size: 14px;
	margin: 0;
	line-height: 1.5;
}

.rhino-btn-white {
	background: #ffffff;
	color: #0f172a !important;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.rhino-btn-white:hover {
	background: #f8fafc;
	transform: translateY(-1px);
	color: #0f172a !important;
}

.rhino-tag-opt {
	font-size: 11px;
	color: #64748b;
	background: #e2e8f0;
	padding: 2px 8px;
	border-radius: 10px;
	font-weight: 500;
}

/* Classic Meta Grid Fallback */
.rhino-meta-grid input[type="text"],
.rhino-meta-grid select {
	padding: 6px 10px;
	border-radius: 4px;
	border: 1px solid #8c8f94;
}

.rhino-cs-accordion summary {
	font-size: 14px;
	color: #1d2327;
}

.rhino-cs-accordion details[open] summary {
	color: #2271b1;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

/* Color Presets Buttons */
.rhino-preset-btn {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	box-shadow: 0 0 0 1px #cbd5e1;
	cursor: pointer;
	padding: 0;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.rhino-preset-btn:hover {
	transform: scale(1.2);
	box-shadow: 0 0 0 2px #2563eb;
}

/* ==========================================================================
   GLOBAL RHINO PORTFOLIO WPADMIN BODY-CONTENT MODERN DESIGN OVERHAUL
   Targeting post-type-rhino_portfolio & portfolio taxonomies in #wpbody-content
   ========================================================================== */

/* Main WP Body Content Container */
.post-type-rhino_portfolio #wpbody-content,
.taxonomy-portfolio_category #wpbody-content,
.taxonomy-portfolio_skill #wpbody-content,
.taxonomy-portfolio_tag #wpbody-content,
.taxonomy-portfolio_collection #wpbody-content {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: #0f172a;
	padding-right: 20px;
}

/* Page Titles & Headers in #wpbody-content */
.post-type-rhino_portfolio .wrap>h1.wp-heading-inline,
.taxonomy-portfolio_category .wrap>h1.wp-heading-inline,
.taxonomy-portfolio_skill .wrap>h1.wp-heading-inline,
.taxonomy-portfolio_tag .wrap>h1.wp-heading-inline,
.taxonomy-portfolio_collection .wrap>h1.wp-heading-inline {
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

/* Add New / Action Buttons */
.post-type-rhino_portfolio .page-title-action,
.taxonomy-portfolio_category .page-title-action,
.taxonomy-portfolio_skill .page-title-action,
.taxonomy-portfolio_tag .page-title-action,
.taxonomy-portfolio_collection .page-title-action {
	background: #2563eb !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 8px 16px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.25) !important;
	transition: all 0.2s ease !important;
	text-decoration: none !important;
	top: -2px;
	position: relative;
}

.post-type-rhino_portfolio .page-title-action:hover,
.taxonomy-portfolio_category .page-title-action:hover,
.taxonomy-portfolio_skill .page-title-action:hover,
.taxonomy-portfolio_tag .page-title-action:hover,
.taxonomy-portfolio_collection .page-title-action:hover {
	background: #1d4ed8 !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 12px -2px rgba(37, 99, 235, 0.35) !important;
}

/* List Table Container & Table Styling */
.post-type-rhino_portfolio .wp-list-table,
.taxonomy-portfolio_category .wp-list-table,
.taxonomy-portfolio_skill .wp-list-table,
.taxonomy-portfolio_tag .wp-list-table,
.taxonomy-portfolio_collection .wp-list-table {
	border: 1px solid #e2e8f0 !important;
	border-radius: 12px !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
	overflow: hidden !important;
	background: #ffffff !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	margin-top: 12px !important;
}

.post-type-rhino_portfolio .wp-list-table thead th,
.taxonomy-portfolio_category .wp-list-table thead th,
.taxonomy-portfolio_skill .wp-list-table thead th,
.taxonomy-portfolio_tag .wp-list-table thead th,
.taxonomy-portfolio_collection .wp-list-table thead th {
	background: #f8fafc !important;
	color: #475569 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	padding: 14px 16px !important;
	border-bottom: 1px solid #e2e8f0 !important;
}

.post-type-rhino_portfolio .wp-list-table td,
.taxonomy-portfolio_category .wp-list-table td,
.taxonomy-portfolio_skill .wp-list-table td,
.taxonomy-portfolio_tag .wp-list-table td,
.taxonomy-portfolio_collection .wp-list-table td {
	padding: 14px 16px !important;
	border-bottom: 1px solid #f1f5f9 !important;
	color: #334155 !important;
	font-size: 14px !important;
	vertical-align: middle !important;
}

.post-type-rhino_portfolio .wp-list-table tr:hover td {
	background-color: #f8fafc !important;
}

.post-type-rhino_portfolio .wp-list-table tr:last-child td {
	border-bottom: none !important;
}

/* Post Title Link in Table */
.post-type-rhino_portfolio .row-title {
	font-weight: 700 !important;
	color: #0f172a !important;
	font-size: 15px !important;
	text-decoration: none !important;
}

.post-type-rhino_portfolio .row-title:hover {
	color: #2563eb !important;
}

/* Subsubsub Filters (All, Published, Draft, Trash) */
.post-type-rhino_portfolio .subsubsub,
.taxonomy-portfolio_category .subsubsub,
.taxonomy-portfolio_skill .subsubsub,
.taxonomy-portfolio_tag .subsubsub,
.taxonomy-portfolio_collection .subsubsub {
	font-weight: 600;
	color: #64748b;
	margin-bottom: 12px;
}

.post-type-rhino_portfolio .subsubsub a,
.taxonomy-portfolio_category .subsubsub a,
.taxonomy-portfolio_skill .subsubsub a,
.taxonomy-portfolio_tag .subsubsub a,
.taxonomy-portfolio_collection .subsubsub a {
	color: #64748b;
	padding: 4px 10px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.15s ease;
}

.post-type-rhino_portfolio .subsubsub a .count,
.post-type-rhino_portfolio .subsubsub .count,
.taxonomy-portfolio_category .subsubsub a .count,
.taxonomy-portfolio_skill .subsubsub a .count,
.taxonomy-portfolio_tag .subsubsub a .count,
.taxonomy-portfolio_collection .subsubsub a .count {
	color: #64748b !important;
	font-weight: 600;
}

.post-type-rhino_portfolio .subsubsub a:hover,
.taxonomy-portfolio_category .subsubsub a:hover,
.taxonomy-portfolio_skill .subsubsub a:hover,
.taxonomy-portfolio_tag .subsubsub a:hover,
.taxonomy-portfolio_collection .subsubsub a:hover {
	color: #2563eb !important;
	background: #eff6ff;
}

.post-type-rhino_portfolio .subsubsub a:hover .count,
.taxonomy-portfolio_category .subsubsub a:hover .count,
.taxonomy-portfolio_skill .subsubsub a:hover .count,
.taxonomy-portfolio_tag .subsubsub a:hover .count,
.taxonomy-portfolio_collection .subsubsub a:hover .count {
	color: #2563eb !important;
}

.post-type-rhino_portfolio .subsubsub a.current,
.taxonomy-portfolio_category .subsubsub a.current,
.taxonomy-portfolio_skill .subsubsub a.current,
.taxonomy-portfolio_tag .subsubsub a.current,
.taxonomy-portfolio_collection .subsubsub a.current {
	background: #2563eb !important;
	color: #ffffff !important;
	font-weight: 700;
}

.post-type-rhino_portfolio .subsubsub a.current .count,
.taxonomy-portfolio_category .subsubsub a.current .count,
.taxonomy-portfolio_skill .subsubsub a.current .count,
.taxonomy-portfolio_tag .subsubsub a.current .count,
.taxonomy-portfolio_collection .subsubsub a.current .count {
	color: #ffffff !important;
	opacity: 0.95;
	font-weight: 700;
}

/* Table Nav Controls & Search Box */
.post-type-rhino_portfolio .tablenav select,
.taxonomy-portfolio_category .tablenav select,
.taxonomy-portfolio_skill .tablenav select,
.taxonomy-portfolio_tag .tablenav select,
.taxonomy-portfolio_collection .tablenav select {
	border: 1px solid #cbd5e1 !important;
	border-radius: 8px !important;
	padding: 6px 12px !important;
	font-size: 13px !important;
	color: #0f172a !important;
	background: #ffffff !important;
}

.post-type-rhino_portfolio .tablenav .button,
.taxonomy-portfolio_category .tablenav .button,
.taxonomy-portfolio_skill .tablenav .button,
.taxonomy-portfolio_tag .tablenav .button,
.taxonomy-portfolio_collection .tablenav .button {
	border: 1px solid #cbd5e1 !important;
	border-radius: 8px !important;
	padding: 6px 14px !important;
	font-weight: 600 !important;
	background: #ffffff !important;
	color: #334155 !important;
	transition: all 0.15s ease !important;
}

.post-type-rhino_portfolio .tablenav .button:hover,
.taxonomy-portfolio_category .tablenav .button:hover {
	border-color: #2563eb !important;
	color: #2563eb !important;
	background: #eff6ff !important;
}

.post-type-rhino_portfolio p.search-box input[type="search"] {
	border: 1px solid #cbd5e1 !important;
	border-radius: 8px !important;
	padding: 6px 12px !important;
	font-size: 13px !important;
}

/* Edit Post Screen (#poststuff) */
.post-type-rhino_portfolio #poststuff {
	padding-top: 10px;
}

/* Post Title Input Field */
.post-type-rhino_portfolio #poststuff #titlewrap input#title {
	border: 1px solid #cbd5e1 !important;
	border-radius: 10px !important;
	padding: 12px 16px !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #0f172a !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.post-type-rhino_portfolio #poststuff #titlewrap input#title:focus {
	border-color: #2563eb !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
	outline: none !important;
}

/* Metaboxes Styling */
.post-type-rhino_portfolio .postbox {
	background: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 12px !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
	margin-bottom: 20px !important;
	overflow: hidden !important;
}

.post-type-rhino_portfolio .postbox-header,
.post-type-rhino_portfolio .postbox .hndle {
	background: #f8fafc !important;
	border-bottom: 1px solid #e2e8f0 !important;
	padding: 14px 18px !important;
}

.post-type-rhino_portfolio .postbox .hndle span,
.post-type-rhino_portfolio .postbox-header h2 {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #0f172a !important;
}

.post-type-rhino_portfolio .postbox .inside {
	padding: 20px 24px !important;
	margin: 0 !important;
}

/* Publish Box Primary Action Button */
.post-type-rhino_portfolio #publishing-action #publish {
	background: #2563eb !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 10px 20px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.25) !important;
	transition: all 0.2s ease !important;
}

.post-type-rhino_portfolio #publishing-action #publish:hover {
	background: #1d4ed8 !important;
	transform: translateY(-1px);
}