/**
 * Enhanced Audio Preview Admin CSS - Neutral Theme
 * Uses currentColor and opacity for maximum theme compatibility
 */

/*--------------------------------------------------------------
# Navigation Icons
--------------------------------------------------------------*/
.nav-tab-wrapper ul li.woo-audio-preview-pro a.nav-tab:before {
    content: "\f111";
}

.nav-tab-wrapper ul li.woo-audio-preview-faq a.nav-tab:before {
    content: "\f125";
}

/*--------------------------------------------------------------
# Meta Box Styles
--------------------------------------------------------------*/
.wcap-preview-tr {
    position: relative;
}

.woo-audio-preview-table {
    margin-top: 10px;
}

.woo-audio-preview-table th {
    font-weight: 600;
    padding: 12px 8px;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.woo-audio-preview-table td {
    padding: 10px 8px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wcap-audio-file input[type="text"],
.wcap-audio-file input[type="url"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wcap-audio-file input[type="text"]:focus,
.wcap-audio-file input[type="url"]:focus {
    border-color: currentColor;
    box-shadow: 0 0 0 1px currentColor;
    outline: none;
}

.wcap-media-button {
    white-space: nowrap;
    min-width: 100px;
}

.wcap-audio-file .sort {
    cursor: move;
    width: 20px;
    text-align: center;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3h6v2H9zm0 4h6v2H9zm0 4h6v2H9zm0 4h6v2H9z" fill="%23666"/></svg>') no-repeat center;
    background-size: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.wcap-audio-file .sort:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Help Section
--------------------------------------------------------------*/
.wcap-help-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    border-left: 4px solid currentColor;
    border-radius: 4px;
}

.wcap-help-section h4 {
    margin: 0 0 10px 0;
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wcap-supported-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    font-size: 13px;
}

.wcap-supported-grid > div {
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 4px;
}

.wcap-supported-grid strong {
    display: block;
    color: inherit;
    margin-bottom: 5px;
}

.wcap-help-tip {
    margin: 10px 0 0 0;
    font-style: italic;
    color: inherit;
    opacity: 0.7;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Error and Success Messages
--------------------------------------------------------------*/
.wcap-error-messages {
    margin-bottom: 15px;
    display: none;
}

.wcap-error-box {
    background: rgba(220, 50, 50, 0.05);
    border: 1px solid rgba(220, 50, 50, 0.3);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid rgba(220, 50, 50, 0.8);
}

.wcap-error-box h4 {
    margin: 0 0 10px 0;
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
}

.error-message {
    margin: 5px 0;
    color: #d32f2f;
    font-size: 13px;
}

.wcap-success-box {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-left: 4px solid currentColor;
}

.success-message {
    margin: 0;
    color: inherit;
    font-size: 13px;
}

.field-error {
    color: #dc3232 !important;
    font-size: 12px !important;
    display: block !important;
    margin-top: 2px !important;
}

.wcap-audio-file input.error {
    border-color: rgba(220, 50, 50, 0.8);
    box-shadow: 0 0 2px rgba(220, 50, 50, 0.8);
}

.wcap-audio-file input.success {
    border-color: currentColor;
    box-shadow: 0 0 2px currentColor;
}

/*--------------------------------------------------------------
# CDN Service Indicators
--------------------------------------------------------------*/
.wcap-cdn-row {
    background-color: rgba(0, 0, 0, 0.02);
}

.wcap-service-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 12px;
    color: inherit;
}

.wcap-service-indicator .service-icon {
    font-size: 14px;
}

.wcap-service-indicator .service-text {
    flex: 1;
}

.wcap-service-indicator .service-status {
    margin-left: auto;
    font-weight: bold;
    color: inherit;
    opacity: 0.8;
}

.wcap_audio_urls.cdn-detected {
    border-color: currentColor;
    box-shadow: 0 0 0 1px currentColor;
}

/*--------------------------------------------------------------
# Usage Examples
--------------------------------------------------------------*/
.wcap-usage-examples {
    margin-top: 15px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.wcap-usage-examples h4 {
    margin: 0 0 8px 0;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
}

.wcap-usage-examples ul {
    margin: 0;
    padding-left: 20px;
    color: inherit;
    opacity: 0.8;
}

.wcap-usage-examples li {
    margin: 5px 0;
    line-height: 1.4;
}

.wcap-usage-examples strong {
    color: inherit;
}

/*--------------------------------------------------------------
# Form Elements
--------------------------------------------------------------*/
.wcap-add-audio-cl,
.wcap-delete-audio-cl {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 2px;
}

.wcap-add-audio-cl {
    background: currentColor;
    color: white;
}

.wcap-add-audio-cl:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.wcap-delete-audio-cl {
    background: transparent;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.wcap-delete-audio-cl:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.woocommerce-help-tip {
    color: inherit;
    opacity: 0.6;
    cursor: help;
    margin-left: 5px;
}

.woocommerce-help-tip::after {
    content: '?';
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: currentColor;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}

.form-field .description {
    margin-top: 10px;
    font-style: italic;
    color: inherit;
    opacity: 0.7;
    font-size: 13px;
    line-height: 1.4;
}

/*--------------------------------------------------------------
# Sortable Styles
--------------------------------------------------------------*/
.wcap-sort-placeholder {
    background: rgba(0, 0, 0, 0.05);
    border: 2px dashed currentColor;
    opacity: 0.3;
    height: 60px;
    border-radius: 4px;
    display: table-row;
}

.ui-sortable-helper {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
}

/*--------------------------------------------------------------
# Loading States
--------------------------------------------------------------*/
.wcap-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.wcap-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Admin Notices
--------------------------------------------------------------*/
.notice.wcap-admin-notice {
    border-left: 4px solid currentColor;
    padding: 15px 20px;
    margin: 15px 0;
}

.notice.wcap-admin-notice.notice-error {
    border-left-color: #dc3545;
}

.notice.wcap-admin-notice.notice-success {
    border-left-color: currentColor;
}

.notice.wcap-admin-notice.notice-warning {
    border-left-color: #ffc107;
}

/*--------------------------------------------------------------
# Meta Box Header
--------------------------------------------------------------*/
#wc-preview-audio-mata-id .hndle {
    font-size: 16px;
    font-weight: 600;
}

#wc-preview-audio-mata-id .inside {
    padding: 20px;
}

.wcap-required-span {
    font-size: 10px;
    color: inherit;
    opacity: 0.6;
    font-weight: normal;
}

/*--------------------------------------------------------------
# FAQ Accordion Styles
--------------------------------------------------------------*/
.wbcom-faq-panel p:first-child {
    padding-top: 15px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .woo-audio-preview-table {
        font-size: 12px;
    }
    
    .woo-audio-preview-table td {
        padding: 5px;
    }
    
    .wcap-media-button {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .wcap-supported-grid {
        grid-template-columns: 1fr;
    }
    
    .wcap-usage-examples {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .woo-audio-preview-table,
    .woo-audio-preview-table tbody,
    .woo-audio-preview-table tr,
    .woo-audio-preview-table td {
        display: block;
        width: 100%;
    }
    
    .woo-audio-preview-table thead {
        display: none;
    }
    
    .woo-audio-preview-table td {
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: relative;
        padding: 8px 10px 8px 40%;
        text-align: left;
    }
    
    .woo-audio-preview-table td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 10px;
        top: 8px;
        font-weight: 600;
        color: inherit;
        width: 35%;
    }
    
    .wcap-audio-file .sort {
        display: none;
    }
}

/*--------------------------------------------------------------
# Welcome Page Styles - Neutral Theme
--------------------------------------------------------------*/
.wbcom-welcome-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wbcom-welcome-header h1 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
	color: inherit;
}

.wbcom-welcome-subtitle {
	font-size: 18px;
	color: inherit;
	opacity: 0.7;
	max-width: 600px;
	margin: 0 auto;
}

/* Quick Start Steps */
.wbcom-quick-start {
	margin-bottom: 50px;
}

.wbcom-quick-start h2 {
	font-size: 24px;
	margin-bottom: 30px;
	color: inherit;
}

.wbcom-steps {
	display: grid;
	gap: 20px;
}

.wbcom-step {
	display: flex;
	gap: 20px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.02);
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.wbcom-step:hover {
	border-color: currentColor;
	transform: translateX(5px);
}

.step-number {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #2a32ef;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
}

.step-content h3 {
	margin: 0 0 8px 0;
	font-size: 18px;
	color: inherit;
}

.step-content p {
	margin: 0;
	color: inherit;
	opacity: 0.8;
}

/* Key Features */
.wbcom-key-features {
	margin-bottom: 50px;
}

.wbcom-key-features h2 {
	font-size: 24px;
	margin-bottom: 30px;
	color: inherit;
}

.wbcom-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

.wbcom-feature {
	text-align: center;
	padding: 25px;
	background: white;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.wbcom-feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wbcom-feature .feature-icon {
	font-size: 36px;
	margin-bottom: 15px;
}

.wbcom-feature h4 {
	margin: 0 0 10px 0;
	font-size: 16px;
	color: inherit;
}

.wbcom-feature p {
	margin: 0;
	color: inherit;
	opacity: 0.8;
	font-size: 14px;
}

/* Tips Section */
.wbcom-tips-section {
	margin-bottom: 50px;
	padding: 30px;
	background: rgba(0, 0, 0, 0.02);
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.wbcom-tips-section h2 {
	font-size: 24px;
	margin-bottom: 30px;
	color: inherit;
}

.wbcom-tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.wbcom-tip {
	padding: 20px;
	background: white;
	border-radius: 6px;
	border-left: 4px solid currentColor;
}

.wbcom-tip h4 {
	margin: 0 0 10px 0;
	font-size: 16px;
	color: inherit;
}

.wbcom-tip p {
	margin: 0;
	color: inherit;
	opacity: 0.8;
	font-size: 14px;
	line-height: 1.5;
}

/* Support Resources */
.wbcom-support-resources {
	margin-bottom: 50px;
}

.wbcom-support-resources h2 {
	font-size: 24px;
	margin-bottom: 30px;
	color: inherit;
}

.wbcom-resources-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.wbcom-resource-card {
	display: block;
	padding: 25px;
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.wbcom-resource-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-color: currentColor;
	text-decoration: none;
}

.resource-icon {
	font-size: 32px;
	margin-bottom: 15px;
}

.wbcom-resource-card h4 {
	margin: 0 0 8px 0;
	font-size: 16px;
	color: inherit;
}

.wbcom-resource-card p {
	margin: 0;
	color: inherit;
	opacity: 0.7;
	font-size: 13px;
}

/* Upgrade Prompt */
.wbcom-upgrade-prompt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
	background: currentColor;
	border-radius: 8px;
	margin-top: 50px;
}

.upgrade-content h3 {
	margin: 0 0 10px 0;
	font-size: 20px;
	color: white;
}

.upgrade-content p {
	margin: 0;
	color: white;
	opacity: 0.9;
}

.upgrade-action .button {
	background: white !important;
	color: #333 !important;
	padding: 12px 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	border: none !important;
}

.upgrade-action .button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
	.wbcom-welcome-header h1 {
		font-size: 24px;
	}
	
	.wbcom-welcome-subtitle {
		font-size: 16px;
	}
	
	.wbcom-features-grid,
	.wbcom-tips-grid,
	.wbcom-resources-grid {
		grid-template-columns: 1fr;
	}
	
	.wbcom-upgrade-prompt {
		flex-direction: column;
		text-align: center;
	}
	
	.wbcom-step {
		flex-direction: column;
		text-align: center;
	}
	
	.step-number {
		margin: 0 auto;
	}
}

/*--------------------------------------------------------------
# Pro Page Styles
--------------------------------------------------------------*/
.wbcom-comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.wbcom-comparison-table th,
.wbcom-comparison-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e1e1e1;
}

.wbcom-comparison-table th {
	background: #f8f9fa;
	font-weight: 600;
	color: inherit;
}

.plan-badge {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.plan-badge.free {
	background: rgba(0, 0, 0, 0.08);
	color: inherit;
	opacity: 0.7;
}

.plan-badge.pro {
	background: rgba(0, 0, 0, 0.9);
	color: white;
}

.free-column {
	text-align: center;
	color: #666;
}

.pro-column {
	text-align: center;
	color: inherit;
	font-weight: 500;
}

.wbcom-cta-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 40px;
}

.pro-benefits {
	background: rgba(0, 0, 0, 0.02);
	padding: 25px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.pro-benefits ul {
	list-style: none;
	padding: 0;
}

.pro-benefits li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	color: inherit;
}

.pro-benefits li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: inherit;
	font-weight: bold;
	opacity: 0.7;
}

.upgrade-box {
	background: currentColor;
	color: white;
	padding: 30px;
	border-radius: 8px;
	text-align: center;
	position: relative;
}

.upgrade-box * {
	position: relative;
	z-index: 1;
}

.upgrade-box h4 {
	color: white;
	margin-top: 0;
	mix-blend-mode: difference;
}

.upgrade-box p {
	color: white;
	mix-blend-mode: difference;
}

.price-tag {
	font-size: 18px;
	margin: 15px 0;
}

.price-tag strong {
	font-size: 36px;
}

.button-hero {
	padding: 15px 30px !important;
	font-size: 16px !important;
	background: white !important;
	color: #333 !important;
	border: none !important;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.button-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.guarantee {
	font-size: 12px;
	opacity: 0.9;
	margin-top: 10px;
}

.support-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.support-card {
	background: rgba(0, 0, 0, 0.02);
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.support-card .dashicons {
	font-size: 40px;
	width: 40px;
	height: 40px;
	color: inherit;
	opacity: 0.6;
}

.support-card h4 {
	margin: 10px 0;
	color: inherit;
}

.support-card .button {
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
}

.support-card .button:hover {
	background: currentColor;
	color: white;
}

@media (max-width: 768px) {
	.wbcom-cta-section {
		grid-template-columns: 1fr;
	}
	
	.wbcom-comparison-table {
		font-size: 14px;
	}
	
	.wbcom-comparison-table th,
	.wbcom-comparison-table td {
		padding: 10px;
	}
}

/*--------------------------------------------------------------
# Audio Preview Items CSS
--------------------------------------------------------------*/
.wcap-fixed-audio-fields {
    margin-top: 20px;
}

.wcap-audio-field-group {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.wcap-field-title {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: inherit;
}

.wcap-required {
    color: inherit;
    opacity: 0.7;
    font-size: 12px;
    font-weight: normal;
}

.wcap-optional {
    color: inherit;
    opacity: 0.5;
    font-size: 12px;
    font-weight: normal;
}

.wcap-field-row {
    margin-bottom: 15px;
}

.wcap-field-row:last-child {
    margin-bottom: 0;
}

.wcap-field-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: inherit;
    opacity: 0.8;
}

.wcap-url-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wcap-url-input-group .wcap-audio-url {
    flex: 1;
}

.wcap-clear-button {
    background: transparent !important;
    color: inherit !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.wcap-clear-button:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.5) !important;
}

.wcap-help-section {
    background: rgba(0, 0, 0, 0.02);
    border-left: 4px solid currentColor;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wcap-help-section h4 {
    margin: 0 0 10px 0;
    color: inherit;
}

.wcap-help-section p {
    margin: 0 0 10px 0;
    color: inherit;
}

.wcap-supported-formats {
    font-size: 13px;
    color: inherit;
    opacity: 0.7;
}

.wcap-service-indicator {
    font-size: 12px;
    color: inherit;
    margin-top: 5px;
    font-style: italic;
    opacity: 0.8;
}

.wcap-pro-notice {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

.wcap-pro-notice p {
    margin: 0;
    color: inherit;
}

.wcap-pro-notice a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.wcap-pro-notice a:hover {
    text-decoration: none;
}

/* Input field styles matching existing theme */
.wcap-audio-name,
.wcap-audio-url {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wcap-audio-name:focus,
.wcap-audio-url:focus {
    border-color: currentColor;
    box-shadow: 0 0 0 1px currentColor;
    outline: none;
}

.wcap-audio-name.error,
.wcap-audio-url.error {
    border-color: rgba(220, 50, 50, 0.8);
    box-shadow: 0 0 2px rgba(220, 50, 50, 0.8);
}

.wcap-audio-name.success,
.wcap-audio-url.success {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.field-error {
    color: #dc3232;
    font-size: 12px;
    display: block;
    margin-top: 3px;
}