.content{
	max-width: 1400px;
	margin: 17px auto;
	box-sizing: border-box;
	border-radius: 12px;
	text-align: center;
}
#intro-text {
  max-width: 600px;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  color: #2a2a2a;
  color: #2a2a2a;
}
#intro-text .bi-gear-fill{
	font-size: 5rem;
	color: hsl(30, 100%, 48%);
}
@keyframes draaiMetPauze {
    0% {
        transform: rotate(-540deg);
    }
    40% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg); /* stilstaand, eindpositie */
    }
}

.rotate-img {
    width: 100px;
    height: auto;
    animation: draaiMetPauze 2s ease-out infinite;
}

.intro-title {
  font-size: 26px;
  color: #4CAF50;
}

.intro-subtitle {
  font-size: 20px;
	color: hsl(30, 100%, 48%);
}

.intro-description {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
}

table{
	display: inline-flex;
	margin: 30px;
	text-align: left;
  max-width: 600px;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
table.first-child{
	margin: 10px;
}
tr:first-child td{
	background-color: #4CAF50;
	color: #fff;
  text-transform: none;
}
.table-sub-header {
  background-color: #f4f6f8;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem;
  text-align: center;
  color: #333;
}

td {
  padding: 1.2rem;
  border-bottom: 1px solid #eaeaea;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  background-color: #fff;
}

td:first-child {
  font-weight: 500;
  width: 150px;
  text-transform: capitalize;
}
td input[type=text]{
	width: calc(100% - 20px);
	line-height: 30px;
	font-size: 18px;
	border: 1px solid #bbb;
	border-radius: 8px;
	padding: 5px 10px;
	box-sizing: border-box;
}
td.info{
	font-weight: normal;
	text-align: center;
}
tr:hover td{
	background-color: #f0f4f8;
}
tr:hover:first-child td{
	background-color: #4CAF50;
}
tr.scnd-info td{
  background-color: #fff;
  cursor: default;
}
i.fas.fa-star {
  color: #ddd;
  font-size: 1.2rem;
  margin-right: 6px;
  transition: color 0.2s ease;
}

i.fas.fa-star.selected {
  color: #fbc02d;
}
#generator-btn {
  display: block;
  margin: 20px auto;
  background: hsl(30, 100%, 48%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: ease all .2s;
}

#generator-btn:hover {
  transform: scale(1.03);
}
#result-wrap{
	max-width: 500px;
	margin: 20px auto;
}
#result{
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f9faff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

#result .hobby-item {
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 3px solid #4CAF50;
  border-left: 8px solid #4CAF50;
  background-color: #eef3ff;
  border-radius: 8px;
  transition: background-color 0.3s;
}

#result .hobby-item:hover {
  background-color: #ffffff;
}

#result .hobby-title {
  font-weight: bold;
  font-size: 18px;
  color: #2a2a2a;
  transform: capitalize;
}

#result .hobby-score {
  font-size: 16px;
  color: #555;
}

#result a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 8px;
  background-color: #4CAF50;
  border-radius: 5px;
  transition: .2s ease all;
}

#result a:hover {
  background-color: #fff;
  color: #4CAF50;
  box-shadow: 0 0 0 2px #4CAF50;
}

.clear-b {
  clear: both;
}
