       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 700px;
        }
        .container1 {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 900px;
        }

        .input-group {
            position: relative;
            margin-bottom: 30px;
        }

        /* Стиль 1: Плавающий лейбл */
        .floating-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5ee;
            border-radius: 10px;
            font-size: 16px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .floating-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .floating-label {
            position: absolute;
            left: 15px;
            top: 15px;
            color: #6c757d;
            transition: all 0.3s ease;
            pointer-events: none;
            background: white;
            padding: 0 5px;
        }

        .floating-input:focus ~ .floating-label,
        .floating-input:not(:placeholder-shown) ~ .floating-label {
            top: -10px;
            font-size: 12px;
            color: #667eea;
            font-weight: 500;
        }

        /* Стиль 2: Input с иконкой */
        .icon-input {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            transition: color 0.3s ease;
        }

        .icon-input input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #e1e5ee;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .icon-input input:focus {
            outline: none;
            border-color: #667eea;
        }

        .icon-input input:focus + .input-icon {
            color: #667eea;
        }

        /* Стиль 3: Gradient border */
        .gradient-input {
            width: 100%;
            padding: 15px;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2) border-box;
            border: 2px solid transparent;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .gradient-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        /* Стиль 4: Неонный эффект */
        .neon-input {
            width: 100%;
            padding: 15px;
            background: #1a1a1a;
            border: 2px solid #333;
            border-radius: 10px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .neon-input:focus {
            outline: none;
            border-color: #00ff88;
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.3),
                        inset 0 0 10px rgba(0, 255, 136, 0.1);
        }

        /* Стиль 5: Glassmorphism */
        .glass-input {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #333;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .glass-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        }

        h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-weight: 600;
        }

        .style-title {
            margin: 25px 0 10px 0;
            color: #667eea;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        } 
.gradient-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    padding: 12px 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #764ba2, #667eea);
}
.btn-3d {
    background: #4CAF50;
    border: none;
    padding: 15px 30px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 6px 0 #388E3C;
    transition: all 0.1s ease;
}

.btn-3d:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #388E3C;
} 
.neon-btn {
    background: transparent;
    border: 2px solid #667eea;
    padding: 12px 30px;
    color: #667eea;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #667eea;
    box-shadow: 0 0 10px #667eea, inset 0 0 10px #667eea;
}

.neon-btn:hover {
    background: #667eea;
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 20px #667eea, 0 0 40px #667eea;
}
        .error { color: red; margin-bottom: 15px; }
        .success { color: green; margin-bottom: 15px; }
        
        .order-items { margin: 20px 0; }
        .order-item { display: flex; margin-bottom: 10px; align-items: center; }
        .order-item select, .order-item input { margin-right: 10px; }
        .print-btn { background: #2196F3; margin-left: 10px; }
        .print-btn:hover { background: #0b7dda; }
        .print-container { display: none; }
        @media print {
            .no-print { display: none; }
            .print-container { display: block; }           
}

  .modern-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            font-family: 'Segoe UI', sans-serif;
        }

 .modern-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

  .modern-table th {
            padding: 10px 20px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
  }

        .modern-table td {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            color: #555;
            transition: all 0.3s ease;
			text-align: left;
			font-weight: 600;
            font-size: 12px;
        }

        .modern-table tbody tr:hover {
            background-color: #f8f9ff;
            transform: translateX(5px);
        }

        .modern-table tbody tr:last-child td {
            border-bottom: none;
        }

        .status {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .status.active {
            background: #e8f5e8;
            color: #2e7d32;
        }

        .status.pending {
            background: #fff3e0;
            color: #f57c00;
        }
    