:root { /* === Core Color Palette === */ --primary: #4CAF50; /* Strong green (main accent) */ --secondary: #81C784; /* Soft green */ --calm: #e6ffe6; /* Light green background */ --info: #e6f7ff; /* Soft blue background */ --warn: #fff3cd; /* Light yellow for alerts */ --neutral: #f9f9f9; /* Default light background */ --text-dark: #212121; /* Standard dark text */ --text-light: #ffffff; /* Light text for dark buttons */ } /* Otree hide timer. */ .otree-timer { display: none !important; } .otree-timer_2 { font-size: 20px; text-align: center; background-color: #f0f8ff; color: #333; padding: 10px 20px; margin: 20px auto; /* center horizontally */ border: 2px solid #ccc; border-radius: 8px; width: fit-content; display: block; } .instructions-box { border: 1px solid #ccc; /* Light gray border */ padding: 16px; /* Adds space inside the box */ border-radius: 8px; /* Rounds the corners */ background-color: #f9f9f9; /* Light background color */ box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */ } /* BOXES */ .attention-box { border: 2px solid lightblue; /* Light blue border */ padding: 12px; /* Space inside the border */ border-radius: 5px; /* Optional: rounded corners */ background-color: #E0F7FA; /* Even lighter blue background */ margin-top: 8px; /* Space above the box */ } /* === Standard content box === */ .content-box { padding: 25px; margin: 30px auto; max-width: 1100px; border: 1px solid #ddd; /* light neutral fallback */ border-radius: 12px; background-color: var(--neutral); box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05); } /* === Box Variants === */ .box-calm { background-color: var(--calm); border-color: #b3e6b3; /* soft green border */ } .box-contrast { background-color: #d6f0ff; /* Slightly darker blue than --info */ border-color: #aadcee; } .box-info { background-color: var(--info); border-color: #99d6f2; /* soft blue border */ } /* Debug info box */ .section-box.box-info-debug { display:none; } .box-neutral { background-color: var(--neutral); border-color: #ddd; } .box-warn { background-color: var(--warn); border-color: #ffe6a1; /* soft orange/yellow */ } .instructions-box { border: 1px solid #ccc; /* Light gray border */ padding: 16px; /* Adds space inside the box */ border-radius: 8px; /* Rounds the corners */ background-color: #f9f9f9; /* Light background color */ box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */ } .section-box { border-radius: 10px; padding: 20px; margin-bottom: 25px; box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.05); text-align: left; transition: transform 0.2s ease, box-shadow 0.2s ease; } .section-box:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); } #popupModal { width: 100%; max-width: 900px !important; margin: 0 auto; display: block; } /* BUNDLES */ .highlight-bundle { border: 3px solid var(--primary); /* or --contrast, --info, etc. */ border-radius: 10px; padding: 12px 24px; background-color: white; font-size: 1.5em; transition: transform 0.2s ease, box-shadow 0.2s ease; } .highlight-bundle:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } /* inline numeral next to task icon */ .no-break { white-space: nowrap; } /* BUTTONS */ /* === Base Button Style === */ .btn { padding: 10px 20px; font-size: 16px; font-weight: 500; border-radius: 6px; cursor: pointer; transition: background-color 0.2s ease-in-out; border: none; } /* === Button Variants === */ .btn-primary { background-color: var(--primary); color: var(--text-light); } .btn-primary:hover { background-color: #45a049; color: var(--text-light); } .btn-info { background-color: #007acc; color: var(--text-light); } .btn-info:hover { background-color: #005f99; color: var(--text-light); } .btn-outline { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); } .btn-outline:hover { background-color: var(--primary); color: var(--text-light); } .btn-warn { background-color: #ff9800; color: var(--text-light); } .btn-warn:hover { background-color: #e68900; color: var(--text-light); } .buttons-container { display: flex; justify-content: space-between; align-items: center; padding: 2px; gap: 10px; /* Adjust this value for desired space between buttons */ } .Continue-button { /* Add your otree next button styles here */ background-color: #007BFF; color: #FFFFFF; border: none; padding: 8px 10px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; border-radius: 5px; cursor: pointer; } /* ATTRIBUTE EXPLANATION - SURVEY */ .attribute-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; } .attribute-box { display: flex; flex-direction: column; gap: 8px; } /* TEXT */ body {font-family: Arial, Helvetica, sans-serif; font-size: 18px; /* Increase base font size */} .instructions-title { font-weight: bold; margin-bottom: 8px; /* Space between the title and buttons */ color: #333; /* Darker color for emphasis */ } .Instructions { display: flex; flex-direction: column; align-items: flex-start; /* Aligns items to the start of the container */ gap: 8px; /* Adds space between buttons */ } .section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; } .section-header .icon { font-size: 1.8rem; margin-bottom: 0; /* override existing spacing */ } .section-title { text-align: center; font-size: 36px; margin-bottom: 10px; } .section-divider { border: none; border-top: 2px solid black; margin-bottom: 25px; } /* OTHER */ /* Practice page table */ .performance-table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 1.05rem; } .performance-table thead th { background-color: #f0f0f0; text-align: left; padding: 10px; border-bottom: 2px solid #ccc; border-radius: 6px; } .performance-table td { padding: 10px; border-bottom: 1px solid #e0e0e0; } .performance-table td:nth-child(2), .performance-table td:nth-child(3) { min-width: 140px; } .performance-table .icon { margin-right: 8px; font-size: 1.2rem; } .icon { font-size: 1.8rem; margin-bottom: 10px; } #pie_chart { display: flex; justify-content: center; /* Center horizontally */ align-items: center; /* Center vertically */ height: 100vh; /* Take full viewport height */ } .instructions-title { font-weight: bold; margin-bottom: 8px; /* Space between the title and buttons */ color: #333; /* Darker color for emphasis */ } .Instructions { display: flex; flex-direction: column; align-items: flex-start; /* Aligns items to the start of the container */ gap: 8px; /* Adds space between buttons */ }