body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    /* Light gray background */
}

.nav-link-custom {
    padding-left: 0.75rem;
    /* px-3 */
    padding-right: 0.75rem;
    /* px-3 */
    padding-top: 0.5rem;
    /* py-2 */
    padding-bottom: 0.5rem;
    /* py-2 */
    border-radius: 0.375rem;
    /* rounded-md */
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.25rem;
    font-weight: 500;
    /* font-medium */
    color: #d1d5db;
    /* text-gray-300 */
    transition-property: background-color, color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.nav-link-custom:hover {
    background-color: #0284c7;
    /* hover:bg-sky-600 */
    color: #ffffff;
    /* hover:text-white */
}

.nav-link-active-custom {
    background-color: #0369a1;
    /* bg-sky-700 */
    color: #ffffff;
    /* text-white */
}

.btn-custom {
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
    /* px-6 */
    padding-top: 0.75rem;
    /* py-3 */
    padding-bottom: 0.75rem;
    /* py-3 */
    border-radius: 0.5rem;
    /* rounded-lg */
    font-weight: 600;
    /* font-semibold */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* shadow-md */
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.btn-primary-custom {
    background-color: #0ea5e9;
    /* bg-sky-600 */
    color: #ffffff;
    /* text-white */
}

.btn-primary-custom:hover {
    background-color: #0284c7;
    /* hover:bg-sky-700 */
}

.btn-primary-custom:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    --tw-ring-color: #7dd3fc;
    /* focus:ring-sky-300 */
}


.btn-secondary-custom {
    background-color: #e5e7eb;
    /* bg-gray-200 */
    color: #374151;
    /* text-gray-700 */
}

.btn-secondary-custom:hover {
    background-color: #d1d5db;
    /* hover:bg-gray-300 */
}

.btn-secondary-custom:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    --tw-ring-color: #d1d5db;
    /* focus:ring-gray-300 */
}

.card-custom {
    background-color: #ffffff;
    /* bg-white */
    border-radius: 0.75rem;
    /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-lg */
    overflow: hidden;
}

.input-field-custom {
    width: 100%;
    padding-left: 1rem;
    /* px-4 */
    padding-right: 1rem;
    /* px-4 */
    padding-top: 0.75rem;
    /* py-3 */
    padding-bottom: 0.75rem;
    /* py-3 */
    border-radius: 0.5rem;
    /* rounded-lg */
    border-width: 1px;
    border-color: #d1d5db;
    /* border-gray-300 */
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.input-field-custom:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-color: #0ea5e9;
    /* focus:ring-sky-500 */
    border-color: transparent;
    /* focus:border-transparent */
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.form-label-custom {
    display: block;
    margin-bottom: 0.5rem;
    /* mb-2 */
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.25rem;
    font-weight: 500;
    /* font-medium */
    color: #374151;
    /* text-gray-700 */
}

.skeleton-custom {
    background-color: #d1d5db;
    /* bg-gray-300 */
    border-radius: 0.25rem;
    /* rounded */
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.toast-custom {
    position: fixed;
    bottom: 1.25rem;
    /* bottom-5 */
    right: 1.25rem;
    /* right-5 */
    background-color: #22c55e;
    /* bg-green-500 default */
    color: #ffffff;
    /* text-white */
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
    /* px-6 */
    padding-top: 0.75rem;
    /* py-3 */
    padding-bottom: 0.75rem;
    /* py-3 */
    border-radius: 0.5rem;
    /* rounded-lg */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transform: translateY(100%);
    opacity: 0;
}

.toast-custom.show {
    transform: translateY(0);
    opacity: 1;
}

.modal-backdrop-custom {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition-property: opacity;
    transition-duration: 300ms;
    opacity: 0;
    pointer-events: none;
}

.modal-backdrop-custom.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-custom {
    background-color: #ffffff;
    /* bg-white */
    padding: 2rem;
    /* p-8 */
    border-radius: 0.75rem;
    /* rounded-xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    width: 100%;
    max-width: 28rem;
    /* max-w-md */
    transform: scale(0.95);
    transition-property: transform;
    transition-duration: 300ms;
}

.modal-backdrop-custom.show .modal-content-custom {
    transform: scale(1);
}

.seat-base {
    /* Base styles for seats */
    border-width: 2px;
    border-color: #d1d5db;
    /* border-gray-300 */
    border-radius: 0.375rem;
    /* rounded-md */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-property: all;
    transition-duration: 200ms;
}

/* Sizes applied directly with Tailwind classes w-8 h-8 md:w-10 md:h-10 */

.seat-available {
    background-color: #d1fae5;
    /* bg-green-100 */
    border-color: #6ee7b7;
    /* border-green-400 */
}

.seat-available:hover {
    background-color: #a7f3d0;
    /* hover:bg-green-300 */
}

.seat-selected {
    background-color: #0ea5e9;
    /* bg-sky-500 */
    color: #ffffff;
    /* text-white */
    border-color: #0369a1;
    /* border-sky-700 */
}

.seat-occupied {
    background-color: #9ca3af;
    /* bg-gray-400 */
    cursor: not-allowed;
    border-color: #6b7280;
    /* border-gray-500 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f2f5;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Lucide icon sizes */
.lucide {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.lucide-sm {
    width: 18px;
    height: 18px;
}

.lucide-lg {
    width: 32px;
    height: 32px;
}