    body {
        font-family: Arial, sans-serif;
        background: linear-gradient(to right, #FF6B6B, #3A1C71);
        margin: 40px;
        color: #333;
    }

    h1 {
        color: #ffffff;
    }

    form {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        max-width: 1200px;
        margin: auto;
    }
    p {
        font-size: 16px;
    }
	.container{
        width: 100%;
        margin: 0 auto;		
	}
    .scrollable-table {
/*        max-height: 500px; /* Adjust the height as needed */
        overflow-y: auto;	
	}
    label {
        margin-right: 20px;
    }

    input[type="radio"] {
        margin-right: 8px;
    }
	.radio-container {
	    /* Hide the text. */
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
	}	

	/* Button Styles */
	.submit-button {
		text-decoration: none; 		
		display: inline-block;
		padding: 10px 20px;
		font-size: 16px;
		font-weight: bold;
		text-decoration: none;
		color: #ffffff;
		background-color: #4CAF50; /* Green */
		border: none;
		border-radius: 5px;
		cursor: pointer;
		transition: background-color 0.3s ease;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

	/* Hover effect */
	.submit-button:hover {
		text-decoration: none; 
		background-color: #45a049; /* Darker green */
		transform: translateY(-2px);
	}

	/* Active state */
	.submit-button:active {
		text-decoration: none; 
		transform: translateY(0);
		box-shadow: none;
	}

	/* Optional: Add a subtle gradient */
	.submit-button {
		background: linear-gradient(to bottom, #4CAF50 0%, #4CAF50 100%);
	}
	a:link { 
	  text-decoration: none; 
	} 
	a:visited { 
	  text-decoration: none; 
	} 
	a:hover { 
	  text-decoration: none; 
	} 
	a:active { 
	  text-decoration: none; 
	}
    table {
        width: 100%x;
        border-collapse: collapse;
        margin-top: 20px;
    }
    
    table th, table td {
        padding: 10px;

    }
    
    table th {
        background-color: #333;
        color: #fff;
    }
    
    table tr:nth-child(even) {
        background-color: #f2f2f2;

    }
    
    table tr:hover {
        background-color: #ddd;
    }
	
	#personalityChart {
		width: 300px;
		height: 100px;
	}