body {
	padding: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}

/* Dropdown menu styles */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    transition: all 0.2s ease;
    z-index: 1000;
}

.dropdown-menu a {
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #eff6ff;
}

/* Page section navigation */
.page-section {
    display: none;
}

.active-section {
    display: block;
}

/* Quiz option hover effect */
.quiz-option:hover {
    background-color: #dbeafe;
}

/* Checklist item checked state */
.checklist-item input:checked + label {
    color: #2563eb;
    font-weight: 600;
}

/* Active tab styling */
.tab-active {
    border-bottom: 3px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
}

/* Tool card hover effect */
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Before/after card hover effect */
.before-after-card {
    transition: all 0.3s ease;
}

.before-after-card:hover {
    transform: scale(1.03);
}
