        body {
	    background: #000 url("images/003a.jpg")  no-repeat center fixed;
            background-color: #000;
            color: #fff;
            padding: 20px;
            font-family: Arial, sans-serif;
        }
        
        h1 {
            color: #4CAF50;
        }
        .form-container {
            background: rgba(30, 30, 30, 0.9);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            padding: 40px;
            width: 100%;
            max-width: 480px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .form-header h2 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #f5f5f5;
        }
        
        .form-group {
            margin-bottom: 24px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-size: 15px;
            color: #ff0000;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus {
            border-color: rgba(255, 255, 255, 0.3);
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
        }
        
        .date-container {
            display: flex;
            gap: 36px;
        }
        
        .date-group {
            flex: 1;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 8px;
            letter-spacing: 0.5px;
        }
        
        .submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(110, 142, 251, 0.3);
        }
        
        /* Кастомизация input type="date" */
        input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1);
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        
        input[type="date"]::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }
        
        /* Анимация при фокусе */
        @keyframes inputFocus {
            0% { transform: scale(1); }
            50% { transform: scale(1.005); }
            100% { transform: scale(1); }
        }
        
        .form-group input:focus {
            animation: inputFocus 0.4s ease;
        }
        
        .darkened-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        }
        
        .darkened-table thead tr {
            background-color: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            text-align: left;
        }
        
        .darkened-table th,
        .darkened-table td {
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .darkened-table tbody tr {
            background-color: rgba(0, 0, 0, 0.5);
            color: #ffffff;
        }
        
        .darkened-table tbody tr:nth-of-type(even) {
            background-color: rgba(0, 0, 0, 0.6);
        }
        
        .darkened-table tbody tr:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
    