
        body { 
            font-family: 'Poppins', sans-serif; 
            background: linear-gradient(120deg, #004e92, #00c6ff); 
            color: #333; 
        }
        .container { max-width: 1000px; margin: auto; padding: 20px; }
        .form-container, .results-container, .feedback-container { 
            background: white; 
            padding: 30px; 
            border-radius: 12px; 
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
        }
        label { font-weight: bold; }
        input, textarea { 
            width: 100%; 
            padding: 12px; 
            margin: 5px 0; 
            border: 1px solid #ccc; 
            border-radius: 6px; 
        }
        button { 
            background: linear-gradient(120deg, #007991, #78ffd6); 
            color: white; 
            padding: 12px; 
            border: none; 
            border-radius: 6px; 
            cursor: pointer; 
            font-size: 16px; 
        }
        button:hover { background: linear-gradient(120deg, #005f73, #78ffd6); }
        .nav { 
            display: flex; 
            justify-content: center; 
            background: linear-gradient(120deg, #007991, #78ffd6); 
            padding: 15px; 
            border-radius: 0 0 12px 12px; 
        }
        .nav a { 
            color: white; 
            margin: 0 20px; 
            text-decoration: none; 
            font-weight: bold; 
            font-size: 18px; 
            transition: 0.3s; 
        }
        .nav a:hover { text-decoration: underline; }
        .section { padding: 60px; text-align: center; }
        footer { 
            background: linear-gradient(120deg, #007991, #78ffd6); 
            color: white; 
            text-align: center; 
            padding: 15px; 
            margin-top: 30px; 
            font-size: 14px; 
        }
        .results-container {
            display: block;
            margin-top: 20px;
        }

        .table-wrapper {
    overflow-x: auto;
    max-width: 100%;
}

.results-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.results-table th, .results-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}
