body {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafafa;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1, h2 {
    color: #222;
    font-weight: 700;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.chart-wrapper h3 {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 1.2em;
    color: #333;
}

.form-section h3 {
    text-align: left;
    margin-bottom: 15px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ddd;
    font-size: 1.1em;
}

.intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.intro .criteria {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.intro .criteria ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.intro .criteria li {
    margin-bottom: 1.25rem;
}

.criteria {
    margin-bottom: 30px;
}

.criteria-item {
    margin-bottom: 8px;
    font-weight: 400;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.job-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.job-title-input {
    width: 90%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-sections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-section {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.form-group label {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.9em;
}

.rating-selector {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.rating-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.rating-btn:hover {
    background-color: #e0e0e0;
}

.rating-btn.selected {
    background-color: rgb(0, 150, 136);
    color: white;
    border-color: rgb(0, 120, 107);
}

.job2-form .rating-btn.selected {
    background-color: rgb(156, 39, 176);
    border-color: rgb(123, 31, 162);
}

.job-title-input:focus {
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#job1-title {
    border-left: 8px solid rgb(0, 150, 136);
}

#job1-title:focus {
    border-color: rgb(0, 150, 136);
}

#job2-title {
    border-left: 8px solid rgb(156, 39, 176);
}

#job2-title:focus {
    border-color: rgb(156, 39, 176);
}

.job-title-input::placeholder {
    color: #999;
    font-weight: 400;
}

.job1-color {
    background-color: rgba(0, 150, 136, 0.7);
}

.job2-color {
    background-color: rgba(156, 39, 176, 0.7);
}

.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.chart-wrapper {
    padding: 20px;
    border-radius: 8px;
    height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    overflow: visible;
}

.chart-svg {
    flex: 1;
    min-height: 0;
    width: 100%;
    height: 100%;
}

.chart-svg svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-svg .axis line,
.chart-svg .axis path {
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 1;
}

.chart-svg .axis text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    fill: #666;
}

.chart-svg .grid line {
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 1;
    stroke-dasharray: 2,2;
}

.chart-svg .area {
    fill-opacity: 0.2;
    stroke-width: 2;
}

.chart-svg .area.job1 {
    fill: rgb(0, 150, 136);
    stroke: rgb(0, 150, 136);
}

.chart-svg .area.job2 {
    fill: rgb(156, 39, 176);
    stroke: rgb(156, 39, 176);
}

.chart-svg .point {
    fill: white;
    stroke-width: 2;
}

.chart-svg .point.job1 {
    stroke: rgb(0, 150, 136);
}

.chart-svg .point.job2 {
    stroke: rgb(156, 39, 176);
}

.job-color {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 50%;
}

.scale-legend {
    margin: 10px auto 20px auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 0.9em;
    color: #555;
    text-transform: uppercase;
}

.scale-legend div {
    display: flex;
    align-items: center;
}

.center {
    text-align: center;
}

.credits {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    color: #666;
    font-size: 0.9em;
    position: relative;
}

.credits a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.credits a:hover {
    color: #333;
}

.credits .buy-me-coffee {
    text-decoration: none;
}

.credits .buy-me-coffee:hover {
    text-decoration: none;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px 0;
    color: #666;
    font-size: 0.9em;
    position: relative;
}

footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer a:hover {
    color: #333;
}

.highlight {
    position: relative;
    display: inline-block;
    padding: 0 4px;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 0.3em;
    height: 0.8em;
    z-index: -1;
    animation: highlight 0.3s ease-in-out;
}

.highlight-yellow::after {
    background: linear-gradient(
        to right,
        rgba(255, 235, 59, 0.3),
        rgba(255, 235, 59, 0.6),
        rgba(255, 235, 59, 0.4),
        rgba(255, 235, 59, 0.7),
        rgba(255, 235, 59, 0.5)
    );
    transform: rotate(-1deg);
}

.highlight-orange::after {
    background: linear-gradient(
        to right,
        rgba(255, 152, 0, 0.3),
        rgba(255, 152, 0, 0.6),
        rgba(255, 152, 0, 0.4),
        rgba(255, 152, 0, 0.7),
        rgba(255, 152, 0, 0.5)
    );
    transform: rotate(1deg);
}

@keyframes highlight {
    from {
        transform: scaleX(0) rotate(0deg);
    }
    to {
        transform: scaleX(1) rotate(var(--rotation));
    }
}

@media (max-width: 1024px) {
    .form-container,
    .chart-container {
        gap: 20px;
    }
    
    .chart-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .form-container,
    .chart-container {
        grid-template-columns: 1fr;
    }
    
    .form-sections-container {
        grid-template-columns: 1fr;
    }
    
    .chart-wrapper {
        height: 400px;
    }
    
    .rating-selector {
        gap: 6px;
    }
    
    .rating-btn {
        width: auto;
        height: auto;
        flex: 1;
        padding: 6px 0;
        border-radius: 4px;
        font-size: 13px;
    }

    .intro {
        padding: 0.5rem;
        width: 100%;
        max-width: 100%;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro > div {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .criteria-container {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        padding: 0;
    }

    .intro .criteria {
        padding: 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .intro .criteria ul {
        font-size: 1em;
    }

    .intro .criteria li {
        margin-bottom: 1rem;
    }

    .mobile-only {
        display: block;
    }
    
    .chart-wrapper {
        height: 400px;
    }
    
    .chart-legend {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 10px;
        border-radius: 4px;
        margin-top: 15px;
    }

    .legend-item {
        flex: 0 1 auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .chart-wrapper {
        height: 350px;
        padding: 15px;
    }
    
    .rating-selector {
        gap: 4px;
    }
    
    .rating-btn {
        padding: 4px 0;
        font-size: 12px;
    }
    
    .job-title-input {
        font-size: 14px;
        padding: 10px 12px;
    }
}

.chart-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 0.9em;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-label {
    font-weight: 500;
    color: #333;
}

.job1-color {
    background-color: rgb(0, 150, 136);
}

.job2-color {
    background-color: rgb(156, 39, 176);
}

.criteria-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .criteria-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .intro {
        padding: 0.5rem;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro .criteria {
        padding: 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }
}

.download-container {
    text-align: center;
    margin: 20px 0 40px;
}

.download-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.download-btn:hover {
    background-color: #444;
}

.buy-me-coffee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffdd44;
    color: #333 !important;
    padding: 8px 16px;
    border-radius: 8px;
    border: none !important;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.buy-me-coffee:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: none !important;
}

.buy-me-coffee svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .download-btn {
        width: 100%;
        padding: 15px;
    }
    
    .buy-me-coffee {
        padding: 8px 12px;
        font-size: 0.85em;
        gap: 6px;
    }
    
    .buy-me-coffee svg {
        width: 14px;
        height: 14px;
    }
} 