/*
 * Custom styles for Livents Theme
 * Inspired by https://livents.pl/
 * Load AFTER style.css
 */

:root {
    --events-primary: #FFD200;
    --events-secondary: #FF2EA6;
    --ark-navbar-user-text: #ffffff;
}

/* ========================================================================
   General Layout
   ======================================================================== */

body.ark-background {
    background-color: #000000;
    color: #ffffff;
}

#contenedor {
    background-color: #000000;
}

#bgfix {
    background-color: #000000;
}

.uk-container {
    background-color: transparent !important;
}

#content {
    background-color: #0a0a0f;
    color: #ffffff;
    padding-bottom: 50px;
    padding-top: 40px;
}

/* Header customization */
.ark-navbar-logo img {
    max-height: 48px;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}

.ark-navbar-logo:hover img {
    transform: scale(1.05);
}

.ark-home-icon, .ark-basket-icon, .ark-hamburger-icon {
    color: #ffffff !important;
    transition: color 0.2s;
}

.ark-home-icon:hover, .ark-basket-icon:hover, .ark-hamburger-icon:hover {
    color: #FFD200 !important;
}

.ark-basket-badge {
    background: #FF2EA6 !important;
    color: #ffffff !important;
}

/* ========================================================================
   Interactive Event Calendar (Redesigned Grid)
   ======================================================================== */

.ark-event-calendar-container {
    background-color: #111115;
    padding: 24px;
    color: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.ark-event-calendar-header h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
}

/* Calendar Navigation Arrows */
.ark-event-calendar-nav a {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    text-decoration: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ark-event-calendar-nav a:hover {
    background: linear-gradient(90deg, #FFD200, #FF2EA6);
    color: #000000;
    border-color: transparent;
    transform: scale(1.1);
}

/* Day Names */
.ark-event-calendar-day-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* Day Cells */
.ark-event-calendar-day {
    background-color: #0a0a0f;
    border: 1px solid rgba(255, 46, 166, 0.2);
    border-radius: 8px;
    color: #ffffff;
    aspect-ratio: 1 / 1;
    min-height: 44px;
    transition: all 0.2s ease-in-out;
}

.ark-event-calendar-day.other-month {
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.03);
}

/* Adjacent-month days that have events stay visible and clickable */
.ark-event-calendar-day.other-month.has-events {
    background-color: #0a0a0f;
    color: #ffffff;
    border-color: rgba(255, 46, 166, 0.2);
}

.ark-event-calendar-day:not(.other-month) .ark-event-calendar-day-number,
.ark-event-calendar-day.other-month.has-events .ark-event-calendar-day-number {
    color: #ffffff;
}

/* Today Day Marker */
.ark-event-calendar-day.today {
    border: 2px solid #FFD200;
}

.ark-event-calendar-day.today .ark-event-calendar-day-number {
    color: #FFD200;
    font-weight: bold;
}

/* Has Events Day hover */
.ark-event-calendar-day.has-events:hover {
    background: linear-gradient(135deg, #FFD200, #FF2EA6) !important;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(255, 46, 166, 0.4);
    z-index: 5;
}

.ark-event-calendar-day.has-events:hover .ark-event-calendar-day-number {
    color: #000000 !important;
    font-weight: 700;
}

/* Selected Calendar Day */
.ark-event-calendar-day.selected {
    background: linear-gradient(135deg, #FFD200 0%, #FF2EA6 100%) !important;
    border: 2px solid #ffffff;
    box-shadow: 0 0 15px rgba(255, 46, 166, 0.6);
    z-index: 6;
}

.ark-event-calendar-day.selected .ark-event-calendar-day-number {
    color: #000000 !important;
    font-weight: 700;
}

.ark-event-term, .ark-event-desc-term {
    background-color: #111115 !important;
    border: 1px solid rgba(255, 46, 166, 0.25) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    padding: 16px 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.ark-event-term .ark-event-term_data p,
.ark-event-term .ark-event-term_data span,
.ark-event-desc-term .ark-event-term_data p,
.ark-event-desc-term .ark-event-term_data span {
    color: #ffffff !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    transition: color 0.2s ease !important;
}

.ark-event-term .ark-event-term_data p,
.ark-event-desc-term .ark-event-term_data p {
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.ark-event-term .ark-event-term_data span,
.ark-event-desc-term .ark-event-term_data span {
    font-size: 14px !important;
    opacity: 0.7 !important;
}

/* Hover over entire card */
.ark-event-term:hover, .ark-event-desc-term:hover {
    background: linear-gradient(90deg, #FFD200 0%, #FF2EA6 100%) !important;
    border-color: transparent !important;
    transform: translateY(-3px) scale(1.01) !important;
    box-shadow: 0 10px 25px rgba(255, 46, 166, 0.4), 0 10px 25px rgba(255, 210, 0, 0.2) !important;
}

.ark-event-term:hover .ark-event-term_data p,
.ark-event-term:hover .ark-event-term_data span,
.ark-event-desc-term:hover .ark-event-term_data p,
.ark-event-desc-term:hover .ark-event-term_data span {
    color: #000000 !important;
}

/* kup bilet button inside the card on card hover */
.ark-event-term:hover .uk-button-success,
.ark-event-desc-term:hover .uk-button-success {
    background-color: #000000 !important;
    background-image: none !important;
    color: #FFD200 !important;
    border: 1px solid #FFD200 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.ark-event-term:hover .uk-button-success:hover,
.ark-event-desc-term:hover .uk-button-success:hover {
    color: #FF2EA6 !important;
    border-color: #FF2EA6 !important;
}

.ark-sale-off {
    color: rgba(255, 255, 255, 0.4) !important;
    font-family: 'Roboto Condensed', sans-serif !important;
}

.ark-event-term:hover .ark-sale-off,
.ark-event-desc-term:hover .ark-sale-off {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* ========================================================================
   Form Controls (Inputs, Selects, Buttons)
   ======================================================================== */

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
    background-color: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #FF2EA6 !important;
    box-shadow: 0 0 8px rgba(255, 46, 166, 0.4) !important;
    outline: none;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: #FF2EA6 !important;
}

/* Quantity input styling */
.quantity {
    --qty-bg: #111115;
    --qty-border: rgba(255, 255, 255, 0.1);
    --qty-color: #ffffff;
    --qty-btn-bg: #111115;
    --qty-btn-color: #ffffff;
    --qty-btn-hover-bg: #FF2EA6;
    --qty-btn-hover-color: #ffffff;
}

/* ========================================================================
   Event Booking Details Screen
   ======================================================================== */

.ark-event-category-title {
    color: #ffffff;
    font-size: 26px;
    font-family: 'Anton', sans-serif;
    margin-bottom: 24px;
    border-left: 4px solid #FFD200;
    padding-left: 12px;
}

/* Social Share Button */
.btnz.share {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 20px;
    padding: 6px 16px;
    transition: all 0.2s;
}

.btnz.share:hover {
    background: linear-gradient(90deg, #FFD200, #FF2EA6);
    color: #000000;
    border-color: transparent;
}

/* Ticket Info Row */
.ark-event_tickets-avail {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Basket / Shopping Table */
.uk-table {
    color: #ffffff;
}

.uk-table th {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.uk-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.uk-table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.uk-table-striped tbody tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/* Alerts */
.uk-alert {
    background: rgba(255, 46, 166, 0.1) !important;
    border: 1px solid rgba(255, 46, 166, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-shadow: none;
}

/* ========================================================================
   Footer
   ======================================================================== */

.ark-footer {
    background-color: #050508 !important;
    border-top: 2px solid #FF2EA6;
    padding-top: 60px;
    padding-bottom: 40px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.7);
}

.ark-footer h4 {
    font-family: 'Anton', sans-serif;
    color: #ffffff !important;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ark-footer p, .ark-footer-row p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    line-height: 1.8;
}

.ark-footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s;
}

.ark-footer a:hover {
    color: #FF2EA6 !important;
    text-shadow: 0 0 8px rgba(255, 46, 166, 0.4);
}

.ark-footer-tikecik {
    margin-top: 40px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.ark-footer-tikecik a {
    color: rgba(255, 255, 255, 0.5) !important;
}

.ark-footer-tikecik a:hover {
    color: #FFD200 !important;
}

/* ========================================================================
   Ticket Card in My Account
   ======================================================================== */

.ark-background .ark-ticket-card {
    background: #111115 !important;
    border: 1px solid rgba(255, 46, 166, 0.2) !important;
    border-radius: 12px;
}

.ark-background .ark-ticket-card h4,
.ark-background .ark-ticket-card p,
.ark-background .ark-ticket-card i {
    color: #ffffff !important;
}

/* Heading override - base style.css sets headings to dark gray #333333, which is too dark on a black page background. */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

/* ========================================================================
   Event Seats Selection Summary Block
   ======================================================================== */
#tickets-total > div > div,
#tickets-total-top > div > div {
    background-color: #111115 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#tickets-total,
#tickets-total-top {
    border-color: rgba(255, 255, 255, 0.05) !important;
    background: transparent !important;
}

.ark-total-txt {
    color: #ffffff !important;
}

.js-tickets-num-value,
.js-tickets-total-price-value {
    color: #FFD200 !important; /* Yellow highlights for selections and prices */
    font-weight: bold;
}

/* Button style override for "seats to basket" */
#tickets-total a.seatsToBasketNumbered,
#tickets-total-top a.seatsToBasketNumbered {
    background: linear-gradient(90deg, #FFD200 0%, #FF2EA6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 4px 15px rgba(255, 46, 166, 0.4) !important;
    padding: 10px 20px !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 16px !important;
    text-align: center !important;
    font-weight: bold !important;
    line-height: 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    margin-right: 4px;
}

#tickets-total a.seatsToBasketNumbered:hover,
#tickets-total-top a.seatsToBasketNumbered:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 46, 166, 0.7), 0 6px 20px rgba(255, 210, 0, 0.4) !important;
    color: #ffffff !important;
}

/* ========================================================================
   Shopping Basket Page
   ======================================================================== */
.ark-cart-title {
    background-color: #111115 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
}

.ark-cart-title-text {
    color: #ffffff !important;
    font-family: 'Anton', sans-serif !important;
}

.ark-cart-title-timer-info {
    color: rgba(255, 255, 255, 0.7) !important;
}

.ark-card-tickets-timer {
    color: #FF2EA6 !important;
}

/* Event grouping panels in basket */
.tik-koszyk-bilet-group .uk-panel-box.ark-event-desc-box {
    background: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
}

.tik-koszyk-bilet-group h1 {
    color: #ffffff !important;
    font-family: 'Anton', sans-serif !important;
    margin-bottom: 12px !important;
}

.ark-event-term_data p,
.ark-event-term_data span {
    color: #ffffff !important;
}

/* Ticket List Item in basket */
.tickets-list .ark-event_tickets-type-item {
    background-color: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
}

.ark-event_ticket-seat,
.ark-event_ticket-price {
    color: #ffffff !important;
}

.ark-event_ticket-seat span,
.ark-event_ticket-price span {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Optional Addons in Basket */
.ark-dodatki-box {
    background-color: #0a0a0f !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 10px !important;
}

.ark-dodatki-box h3.uk-accordion-title {
    color: #ffffff !important;
    background-color: #111115 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.ark-dodatki-box h3.uk-accordion-title:after {
    color: #ffffff !important;
}

.ark-dodatki-box .uk-accordion-content a {
    color: #FFD200 !important;
}

.ark-dodatki-box .uk-accordion-content a:hover {
    color: #FF2EA6 !important;
}

/* Discount code block in basket */
.discount-code .uk-panel-box {
    background: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
}

/* Bottom total panel in basket */
.ark-cart-total.js-cart-basket-summary {
    background-color: #111115 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 20px !important;
}

.ark-cart-total.js-cart-basket-summary .uk-container-center {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 18px;
}

/* Close & removal buttons visibility */
.uk-close, .uk-close-alt {
    color: #ffffff !important;
    opacity: 0.7 !important;
    transition: opacity 0.2s, color 0.2s;
    text-shadow: none !important;
}

.uk-close:hover, .uk-close-alt:hover {
    color: #FF2EA6 !important;
    opacity: 1 !important;
}

/* Unicode Multiplication Sign (×) fallback for close buttons */
.uk-close:after {
    content: "\d7" !important;
    font-family: Arial, sans-serif !important;
    font-size: 24px !important;
    line-height: 20px !important;
    font-weight: normal !important;
}

.uk-close-alt {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.uk-icon-times {
    color: #FF2EA6 !important; /* Premium pink */
    font-size: 16px !important;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.uk-icon-times:hover {
    color: #FFD200 !important; /* Yellow hover */
    opacity: 1;
    transform: scale(1.1);
}

/* ========================================================================
   Checkout Order Page
   ======================================================================== */
.checkout-page {
    color: #ffffff !important;
}

.checkout-timer {
    background: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
}

.checkout-timer strong {
    color: #FF2EA6 !important;
}

.checkout-section {
    background: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
}

.checkout-section-header {
    background: #1a1a24 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

.checkout-section-header h3 {
    color: #ffffff !important;
    font-family: 'Anton', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.checkout-step {
    background: linear-gradient(90deg, #FFD200 0%, #FF2EA6 100%) !important;
    color: #000000 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-weight: bold !important;
}

.checkout-page .uk-form-label {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-weight: 700 !important;
}

.checkout-card {
    background: #0a0a0f !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
}

.checkout-card h4 {
    color: #ffffff !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    text-transform: uppercase !important;
}

.checkout-card h4 i {
    color: #FFD200 !important;
}

.checkout-radio-item {
    background: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 12px 14px !important;
    transition: all 0.2s ease !important;
}

.checkout-radio-item:hover {
    border-color: #FF2EA6 !important;
    background: rgba(255, 46, 166, 0.05) !important;
}

.checkout-radio-item input[type="radio"]:checked + .checkout-radio-label {
    color: #FFD200 !important;
    font-weight: bold !important;
}

.checkout-radio-price {
    color: #FFD200 !important;
    font-weight: bold !important;
}

.checkout-payment-notice {
    background: rgba(255, 210, 0, 0.1) !important;
    border: 1px solid rgba(255, 210, 0, 0.2) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 10px !important;
    margin-bottom: 12px !important;
}

.checkout-card .payment-option {
    background: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    transition: all 0.2s ease !important;
}

.checkout-card .payment-option:hover {
    border-color: #FFD200 !important;
    background: rgba(255, 210, 0, 0.05) !important;
}

.checkout-card .payment-option label {
    color: #ffffff !important;
}

.checkout-card .payment-option label span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.payment-label-content .js-payment-price {
    color: #FFD200 !important;
    font-weight: bold !important;
}

.checkout-invoice-toggle {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Sidebar */
.checkout-sidebar {
    background: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
}

.checkout-sidebar-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.checkout-sidebar-toggle h4 {
    color: #ffffff !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    text-transform: uppercase !important;
}

.checkout-sidebar-toggle h4 i {
    color: #FFD200 !important;
}

.checkout-item-count {
    background: #FF2EA6 !important;
    color: #ffffff !important;
}

.checkout-cart-event-name {
    color: #FFD200 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-weight: bold !important;
}

.checkout-cart-event-detail {
    color: rgba(255, 255, 255, 0.65) !important;
}

.checkout-cart-event-detail small {
    color: rgba(255, 255, 255, 0.4) !important;
}

.checkout-cart-ticket {
    background: #0a0a0f !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.checkout-cart-ticket-price {
    color: #FFD200 !important;
}

.checkout-summary-row {
    color: rgba(255, 255, 255, 0.75) !important;
}

.checkout-summary-total {
    border-top: 2px solid #FF2EA6 !important;
    color: #ffffff !important;
}

.checkout-summary-total span:last-child {
    color: #FFD200 !important;
}

.checkout-agreement {
    color: rgba(255, 255, 255, 0.85) !important;
}

.checkout-agreement a {
    color: #FFD200 !important;
    text-decoration: underline !important;
}

.checkout-agreement a:hover {
    color: #FF2EA6 !important;
}

.checkout-submit-btn {
    background: linear-gradient(90deg, #FFD200 0%, #FF2EA6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(255, 46, 166, 0.4) !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: block !important;
    width: 100% !important;
    padding: 12px 24px !important;
}

.checkout-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 46, 166, 0.7), 0 6px 20px rgba(255, 210, 0, 0.4) !important;
}

.checkout-field-error {
    color: #FF2EA6 !important;
    font-size: 13px !important;
    font-weight: bold !important;
    margin-top: 4px !important;
}

/* ========================================================================
   Ticket Name Form Field & Danger Error State
   ======================================================================== */
.ark-ticket-name-box .uk-form-label {
    color: #ffffff !important;
    display: inline-block !important;
    margin-bottom: 6px !important;
}

.ark-ticket-name-box input[type="text"] {
    background-color: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    width: 300px !important;
    transition: all 0.3s ease !important;
}

.ark-ticket-name-box input[type="text"]:focus {
    border-color: #FF2EA6 !important;
    box-shadow: 0 0 8px rgba(255, 46, 166, 0.4) !important;
    outline: none !important;
}

/* Override UIKit's invasive background for wrappers in danger error state */
.uk-form-danger,
.uk-form-row.uk-form-danger,
.uk-form-controls.uk-form-danger {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Style input fields inside danger/error wrappers or when they have error class */
input.uk-form-danger,
select.uk-form-danger,
textarea.uk-form-danger,
.uk-form-danger input,
.uk-form-danger select,
.uk-form-danger textarea {
    background-color: #1a1015 !important; /* Dark red-pink tint */
    border: 1px solid #FF2EA6 !important; /* Pink border */
    color: #ffffff !important;
    box-shadow: 0 0 8px rgba(255, 46, 166, 0.4) !important;
}

/* Payment option visual text and icon colors in Livents theme */
.payment-text-inline {
    color: #ffffff !important;
}

.payment-icon {
    color: #FFD200 !important; /* Yellow icons */
}
