/**
 * Investment Wallet System — Styles
 * Covers both frontend shortcodes and admin pages.
 *
 * @package InvestmentWalletSystem
 * @since   1.0.0
 */

/* =========================================================================
   CSS Custom Properties
   ========================================================================= */
:root {
	--iws-primary: #1a6b3c;
	--iws-primary-lt: #22883f;
	--iws-accent: #f0b429;
	--iws-danger: #d63031;
	--iws-warning-bg: #fff8e1;
	--iws-success-bg: #e8f5e9;
	--iws-error-bg: #ffebee;
	--iws-card-bg: #ffffff;
	--iws-border: #e0e0e0;
	--iws-text: #1a1a2e;
	--iws-text-muted: #6b7280;
	--iws-radius: 12px;
	--iws-shadow: 0 4px 20px rgba(0, 0, 0, .08);
	--iws-transition: .2s ease;
}

/* =========================================================================
   Packages Grid
   ========================================================================= */
.iws-packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	margin: 32px 0;
}

.iws-package-card {
	background: var(--iws-card-bg);
	border: 1px solid var(--iws-border);
	border-radius: var(--iws-radius);
	padding: 28px 24px;
	box-shadow: var(--iws-shadow);
	transition: transform var(--iws-transition), box-shadow var(--iws-transition);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.iws-package-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.iws-package-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--iws-primary);
	border-bottom: 2px solid var(--iws-accent);
	padding-bottom: 10px;
}

.iws-package-details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.iws-package-details li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .95rem;
}

.iws-label {
	color: var(--iws-text-muted);
	font-weight: 500;
}

.iws-value {
	font-weight: 700;
	color: var(--iws-text);
}

.iws-value.iws-profit {
	color: var(--iws-primary);
}

.iws-value.iws-total {
	color: var(--iws-accent);
	font-size: 1.05rem;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.iws-btn {
	display: inline-block;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: .95rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	border: none;
	transition: background var(--iws-transition), transform var(--iws-transition);
	width: 100%;
}

.iws-btn-invest {
	background: var(--iws-primary);
	color: #ffffff;
	margin-top: auto;
}

.iws-btn-invest:hover:not(:disabled) {
	background: var(--iws-primary-lt);
	transform: scale(1.02);
}

.iws-btn-invest:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.iws-btn-login {
	background: var(--iws-accent);
	color: var(--iws-text);
}

.iws-btn-login:hover {
	opacity: .9;
}

.iws-btn-primary {
	background: var(--iws-primary);
	color: #ffffff;
	padding: 12px 28px;
	width: auto;
}

.iws-btn-primary:hover {
	background: var(--iws-primary-lt);
}

/* =========================================================================
   Dashboard
   ========================================================================= */
.iws-dashboard {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 24px 0;
}

.iws-card {
	background: var(--iws-card-bg);
	border: 1px solid var(--iws-border);
	border-radius: var(--iws-radius);
	padding: 28px;
	box-shadow: var(--iws-shadow);
}

.iws-card h2 {
	margin: 0 0 20px;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--iws-primary);
}

.iws-wallet-card {
	background: linear-gradient(135deg, var(--iws-primary) 0%, var(--iws-primary-lt) 100%);
	color: #ffffff;
}

.iws-wallet-card h2 {
	color: rgba(255, 255, 255, .85);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.iws-balance {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -.02em;
}

/* =========================================================================
   Tables
   ========================================================================= */
.iws-table-wrapper {
	overflow-x: auto;
}

.iws-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}

.iws-table th,
.iws-table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid var(--iws-border);
}

.iws-table th {
	background: #f8f9fa;
	font-weight: 600;
	color: var(--iws-text-muted);
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .05em;
}

/* Hover effect removed per user request */

/* =========================================================================
   Status Badges
   ========================================================================= */
.iws-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: .8rem;
	font-weight: 600;
	text-transform: capitalize;
}

.iws-status-active {
	background: #e8f5e9;
	color: #2e7d32;
}

.iws-status-completed {
	background: #e3f2fd;
	color: #1565c0;
}

.iws-status-pending {
	background: #fff8e1;
	color: #f57f17;
}

.iws-status-pending_approval {
	background: #fff3e0;
	color: #e65100;
}

.iws-status-approved {
	background: #e8f5e9;
	color: #2e7d32;
}

.iws-status-rejected {
	background: #ffebee;
	color: #c62828;
}

/* ---- Screenshot upload area ---- */
/* Hidden native file input — sits inside the label, invisible but functional */
.iws-file-hidden {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
	pointer-events: none;
	tab-index: -1;
}

/*
 * The <label> element IS the upload area.
 * Clicking anywhere on it natively opens the file picker.
 * display:block + cursor:pointer make it look and behave like a button.
 */
.iws-screenshot-upload-area {
	display: block;
	border: 2px dashed var(--iws-border, #e0e0e0);
	border-radius: 10px;
	padding: 28px 14px;
	text-align: center;
	cursor: pointer;
	transition: border-color .2s, background .2s, box-shadow .2s;
	background: #f8f9fa;
	position: relative;
	user-select: none;
	-webkit-user-select: none;
}

.iws-screenshot-upload-area:hover,
.iws-screenshot-upload-area:focus-within,
.iws-screenshot-upload-area.iws-drag-over {
	border-color: var(--iws-primary, #1a6b3c);
	background: #f0faf4;
	box-shadow: 0 0 0 3px rgba(26, 107, 60, .10);
	outline: none;
}

.iws-screenshot-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: var(--iws-text-muted, #6b7280);
	font-size: .9rem;
}

.iws-screenshot-placeholder .iws-upload-icon {
	font-size: 2.2rem;
	line-height: 1;
	margin-bottom: 4px;
}

.iws-screenshot-placeholder strong {
	color: var(--iws-primary, #1a6b3c);
	font-size: .95rem;
}

.iws-screenshot-placeholder .iws-upload-hint {
	font-size: .78rem;
	opacity: .7;
	margin-top: 2px;
}

.iws-screenshot-preview {
	position: relative;
	display: inline-block;
}

.iws-screenshot-preview img {
	max-width: 100%;
	max-height: 180px;
	border-radius: 8px;
	border: 1px solid var(--iws-border, #e0e0e0);
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.iws-screenshot-remove {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #e53935;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 15px;
	line-height: 24px;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	z-index: 2;
}

/* Prevent the remove button from also triggering the file picker */
.iws-screenshot-remove {
	pointer-events: all;
}

/* Field label span (used instead of <label> since label IS the upload box) */
.iws-field-label {
	display: block;
	font-weight: 600;
	font-size: .9rem;
	color: var(--iws-text, #1a1a2e);
	margin-bottom: 6px;
}

/* =========================================================================
   Forms
   ========================================================================= */
.iws-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 480px;
}

.iws-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.iws-form-group label {
	font-weight: 600;
	font-size: .9rem;
	color: var(--iws-text);
}

.iws-form-group input,
.iws-form-group select {
	padding: 10px 14px;
	border: 1px solid var(--iws-border);
	border-radius: 8px;
	font-size: .95rem;
	color: var(--iws-text);
	transition: border-color var(--iws-transition);
	background: #fff;
}

.iws-form-group input:focus,
.iws-form-group select:focus {
	outline: none;
	border-color: var(--iws-primary);
	box-shadow: 0 0 0 3px rgba(26, 107, 60, .12);
}

/* =========================================================================
   Alerts & Notices
   ========================================================================= */
.iws-notice {
	color: var(--iws-text-muted);
	font-style: italic;
	text-align: center;
	padding: 24px;
}

.iws-alert {
	padding: 14px 18px;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 500;
	margin-bottom: 12px;
}

.iws-alert-warning {
	background: var(--iws-warning-bg);
	color: #856404;
	border-left: 4px solid var(--iws-accent);
}

.iws-alert-success {
	background: var(--iws-success-bg);
	color: #2e7d32;
	border-left: 4px solid var(--iws-primary);
}

.iws-alert-error {
	background: var(--iws-error-bg);
	color: #c62828;
	border-left: 4px solid var(--iws-danger);
}

/* =========================================================================
   Admin Panel
   ========================================================================= */
.iws-admin-wrap h1 {
	margin-bottom: 20px;
}

.iws-admin-stats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 32px;
}

.iws-stat-card {
	background: #ffffff;
	border: 1px solid #dcdde1;
	border-radius: 8px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
	border-top: 4px solid var(--iws-primary);
}

.iws-stat-card.iws-stat-warning {
	border-top-color: var(--iws-accent);
}

.iws-stat-card.iws-stat-success {
	border-top-color: #22c55e;
}

.iws-stat-number {
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--iws-text);
	line-height: 1;
}

.iws-stat-label {
	font-size: .82rem;
	color: var(--iws-text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.iws-admin-shortcodes {
	margin-top: 24px;
}

.button.iws-btn-danger {
	background: var(--iws-danger);
	color: #ffffff;
	border-color: var(--iws-danger);
}

.button.iws-btn-danger:hover {
	background: #b71c1c;
	border-color: #b71c1c;
	color: #ffffff;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 600px) {
	.iws-packages-grid {
		grid-template-columns: 1fr;
	}

	.iws-balance {
		font-size: 2rem;
	}

	.iws-card {
		padding: 20px 16px;
	}
}

/* =========================================================================
   Auth Forms (Register / Login)
   ========================================================================= */
.iws-auth-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 16px;
	min-height: 60vh;
}

.iws-auth-card {
	background: var(--iws-card-bg);
	border: 1px solid var(--iws-border);
	border-radius: 16px;
	padding: 40px 36px;
	width: 100%;
	max-width: 480px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, .10);
}

.iws-auth-logo {
	text-align: center;
	margin-bottom: 28px;
}

.iws-auth-icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 10px;
}

.iws-auth-title {
	margin: 0 0 6px;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--iws-text);
}

.iws-auth-subtitle {
	margin: 0;
	color: var(--iws-text-muted);
	font-size: .95rem;
}

.iws-auth-form {
	margin-top: 0;
}

.iws-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.iws-password-wrap {
	position: relative;
	display: flex;
}

.iws-password-wrap input {
	flex: 1;
	border-radius: 8px 0 0 8px !important;
}

.iws-toggle-pw {
	background: #f0f0f0;
	border: 1px solid var(--iws-border);
	border-left: none;
	border-radius: 0 8px 8px 0;
	padding: 0 12px;
	cursor: pointer;
	font-size: 1rem;
	color: var(--iws-text-muted);
	transition: background var(--iws-transition);
}

.iws-toggle-pw:hover {
	background: #e0e0e0;
}

.iws-remember-row {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.iws-checkbox-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	cursor: pointer;
}

.iws-forgot-link {
	font-size: .85rem;
	color: var(--iws-primary);
	text-decoration: none;
}

.iws-forgot-link:hover {
	text-decoration: underline;
}

.iws-btn-full {
	width: 100%;
	margin-top: 4px;
}

.iws-auth-switch {
	text-align: center;
	margin: 20px 0 0;
	font-size: .9rem;
	color: var(--iws-text-muted);
}

.iws-auth-switch a {
	color: var(--iws-primary);
	font-weight: 600;
	text-decoration: none;
}

.iws-auth-switch a:hover {
	text-decoration: underline;
}

/* =========================================================================
   Guest CTA on Package Cards
   ========================================================================= */
.iws-guest-cta {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.iws-guest-register {
	font-size: .85rem;
	color: var(--iws-text-muted);
	margin: 0;
	text-align: center;
}

.iws-guest-register a {
	color: var(--iws-primary);
	font-weight: 600;
	text-decoration: none;
}

/* =========================================================================
   Payment Modal
   ========================================================================= */
.iws-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	backdrop-filter: blur(3px);
	animation: iwsFadeIn .18s ease;
}

@keyframes iwsFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.iws-modal-overlay[hidden] {
	display: none;
}

.iws-modal-box {
	background: #fff;
	border-radius: 16px;
	padding: 36px 32px;
	width: 100%;
	max-width: 500px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
	animation: iwsSlideUp .22s ease;
	max-height: 90vh;
	overflow-y: auto;
}

@keyframes iwsSlideUp {
	from {
		transform: translateY(24px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.iws-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: var(--iws-text-muted);
	transition: color var(--iws-transition);
	padding: 4px 8px;
	border-radius: 6px;
}

.iws-modal-close:hover {
	background: #f0f0f0;
	color: var(--iws-text);
}

.iws-modal-header {
	text-align: center;
	margin-bottom: 24px;
}

.iws-modal-icon {
	font-size: 2.2rem;
	display: block;
	margin-bottom: 10px;
}

.iws-modal-header h2 {
	margin: 0 0 4px;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--iws-text);
}

.iws-modal-subtitle {
	margin: 0;
	color: var(--iws-primary);
	font-weight: 600;
	font-size: .95rem;
}

.iws-modal-instruction {
	text-align: center;
	color: var(--iws-text-muted);
	margin-bottom: 20px;
	font-size: .95rem;
}

/* Payment method selector */
.iws-payment-methods {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 8px;
}

.iws-payment-method-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 20px 12px;
	border: 2px solid var(--iws-border);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: all var(--iws-transition);
}

.iws-payment-method-btn:hover,
.iws-payment-method-btn.selected {
	border-color: var(--iws-primary);
	background: #f0faf4;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(26, 107, 60, .15);
}

.iws-pm-icon {
	font-size: 2rem;
	line-height: 1;
}

.iws-pm-name {
	font-weight: 700;
	font-size: 1rem;
	color: var(--iws-text);
}

.iws-pm-tag {
	font-size: .75rem;
	color: var(--iws-text-muted);
	font-weight: 500;
}

/* Confirmation step */
.iws-selected-method-banner {
	background: #f0faf4;
	border: 1px solid #b7dfbf;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: .9rem;
	color: var(--iws-text);
	margin-bottom: 16px;
}

.iws-selected-method-banner code {
	/* background: #d6f0dc; */
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 700;
	font-size: .95em;
}

.iws-payment-instructions {
	background: #fffbf0;
	border: 1px solid #f0e0a0;
	border-radius: 8px;
	padding: 16px;
}

.iws-payment-instructions h4 {
	margin: 0 0 10px;
	font-size: .9rem;
	font-weight: 700;
	color: #856404;
}

.iws-payment-instructions ol {
	margin: 0;
	padding-left: 18px;
}

.iws-payment-instructions ol li {
	font-size: .88rem;
	color: var(--iws-text);
	margin-bottom: 6px;
	line-height: 1.5;
}

.iws-modal-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.iws-btn-outline {
	background: transparent;
	border: 2px solid var(--iws-border);
	color: var(--iws-text-muted);
	padding: 10px 18px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	font-size: .9rem;
	transition: all var(--iws-transition);
	flex: 0 0 auto;
	width: auto;
}

.iws-btn-outline:hover {
	border-color: var(--iws-primary);
	color: var(--iws-primary);
}

/* Progress bar */
.iws-progress-bar {
	background: #e9ecef;
	border-radius: 20px;
	height: 8px;
	width: 100%;
	overflow: hidden;
	margin-bottom: 4px;
}

.iws-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--iws-primary) 0%, var(--iws-primary-lt) 100%);
	border-radius: 20px;
	transition: width .4s ease;
}

/* Wallet greeting */
.iws-greeting {
	margin: 0 0 4px;
	color: rgba(255, 255, 255, .8);
	font-size: .95rem;
}

.iws-wallet-label {
	margin: 0 0 6px;
	color: rgba(255, 255, 255, .7);
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}

@media (max-width: 500px) {
	.iws-auth-card {
		padding: 28px 20px;
	}

	.iws-form-row {
		grid-template-columns: 1fr;
	}

	.iws-payment-methods {
		grid-template-columns: 1fr 1fr;
	}

	.iws-modal-box {
		padding: 24px 18px;
	}

	.iws-modal-actions {
		flex-direction: column;
	}
}

/* =========================================================================
   Logout Button (Dashboard Wallet Card)
   ========================================================================= */
.iws-wallet-top-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 4px;
}

.iws-wallet-top-row .iws-greeting {
	margin: 0;
	flex: 1;
}

.iws-btn-logout {
	background: rgba(255, 255, 255, .15);
	color: #ffffff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 8px 16px;
	font-size: .82rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background var(--iws-transition), border-color var(--iws-transition);
	width: auto;
	flex-shrink: 0;
}

.iws-btn-logout:hover:not(:disabled) {
	background: rgba(255, 255, 255, .28);
	border-color: rgba(255, 255, 255, .7);
}

.iws-btn-logout:disabled {
	opacity: .55;
	cursor: not-allowed;
}

/* =========================================================================
   Admin Investments — Action Button Group
   ========================================================================= */
.iws-action-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
}

.iws-action-group form {
	display: block;
	margin: 0;
}

.iws-act-btn {
	width: 100%;
	text-align: center;
	white-space: nowrap;
}

/* Delete button — dark red, distinct from the orange-red danger button */
.button.iws-btn-delete {
	background: #7b1818;
	color: #ffffff;
	border-color: #5a0f0f;
}

.button.iws-btn-delete:hover {
	background: #5a0f0f;
	border-color: #3d0a0a;
	color: #ffffff;
}

/* Re-approve gets a teal tint to differentiate from first-time approve */
.iws-action-group .button-primary.iws-act-btn {
	background: #1a6b3c;
	border-color: #145730;
}

.iws-action-group .button-primary.iws-act-btn:hover {
	background: #145730;
	border-color: #0f4024;
}

/* =========================================================================
   Wallet Card — Active Investment Summary Strip
   ========================================================================= */
.iws-inv-summary {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 18px;
	background: rgba(255, 255, 255, .13);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 10px;
	padding: 12px 16px;
}

.iws-inv-summary-item {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
}

.iws-inv-summary-divider {
	width: 1px;
	height: 36px;
	background: rgba(255, 255, 255, .25);
	margin: 0 16px;
	flex-shrink: 0;
}

.iws-inv-summary-icon {
	font-size: 1.4rem;
	line-height: 1;
	flex-shrink: 0;
}

.iws-inv-summary-item>div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.iws-inv-summary-label {
	font-size: .72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: rgba(255, 255, 255, .70);
}

.iws-inv-summary-value {
	font-size: 1.05rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -.01em;
}

.iws-inv-summary-reward {
	color: #a8f0c0;
	/* soft green tint — distinct from the main balance */
}

@media (max-width: 480px) {
	.iws-inv-summary {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.iws-inv-summary-divider {
		width: 100%;
		height: 1px;
		margin: 0;
	}
}

/* =========================================================================
   Package Frontend Status Badges
   ========================================================================= */
.iws-package-status {
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	font-weight: 600;
	margin-top: auto;
}

.iws-package-active {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

.iws-package-pending {
	background: #fff3e0;
	color: #e65100;
	border: 1px solid #ffe0b2;
}