/* TWS Rügen - Order System Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Custom scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Remove arrows from number inputs */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Input styling */
.premium-input {
    transition: all 0.2s ease-in-out;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

.premium-input:focus {
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
    outline: none;
}

/* Item Row styling */
.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
}

.item-row:hover {
    background-color: #f8fafc;
    border-radius: 0.375rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.item-row:last-child {
    border-bottom: none;
}

/* Glassmorphism card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient header */
.header-gradient {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
}

/* Toggle Switch animation */
input:checked ~ .dot { 
    transform: translateX(100%); 
}
input:checked ~ .block { 
    background-color: #003366; 
}
