body {
		font-family: Arial, sans-serif;
		background-color: #1e1e1e;
		color: #f5f5f5;
		text-align: center;
		padding: 20px;
		margin: 0;
        }
        h1 {
            color: #4caf50;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            background-color: #4caf50; 
            color: #fff;
            border: none;
            border-radius: 5px;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #388e3c; 
        }
        #result {
			display: none;
            margin-top: 20px;
            font-size: 20px;
            font-weight: bold;
            color: #4caf50; 
            padding: 15px;
            border: 2px solid #4caf50; 
            border-radius: 2px;
            background-color: #2e2e2e;
            text-align: left; 
			max-width: 270px;
			margin-left: auto;
            margin-right: auto; 
            word-wrap: break-word;
        }
        .section {
            margin: 10px;
            padding: 10px;
            background-color: #2e2e2e;
            border-radius: 5px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
            color: #f5f5f5;
            width: 200px;
            text-align: left;
        }
        .section h3 {
            margin: 0;
            color: #f5f5f5;
            border-bottom: 2px solid #4caf50; 
            padding-bottom: 10px;
        }
        .section label {
            display: block;
            margin: 5px 0;
            color: #b0bec5;
        }
        #exclusions {
            position: absolute;
            top: 20px;
            left: 20px;
            display: flex;
            gap: 20px;
            flex-direction: row;
        }
        #excludeRaces, #excludeBirthsigns, #excludeBlessings {
            background-color: #424242;
            border: 1px solid #616161;
            box-shadow: none;
            font-size: 14px;
            text-align: left; 
        }
        #includeRandomization {
            margin-top: 20px;
            text-align: center;
        }
        #includeRandomization label {
            display: inline-block;
            margin: 0 15px;
            font-size: 14px;
            color: #b0bec5;
        }
        #exclusions > div {
            display: flex;
            flex-direction: column;
        }
        #excludeRaces {
            margin-top: 20px;
        }
        #excludeBirthsigns {
            margin-bottom: 20px;
        }