#seo-simulator {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-family: 'Montserrat', sans-serif;
    max-width: 1200px;
    margin: auto;
}

#seo-left {
    flex: 1;
    min-width: 300px;
}

#seo-right {
    flex: 2;
    min-width: 400px;
}

#seo-objective-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.seo-objective-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f2f2f2;
}

.seo-objective-btn.selected {
    border-color: #CD8D53;
    background-color: #fef4ec;
    color: #CD8D53;
    font-weight: bold;
}

#seo-left label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

#seo-left input[type="number"] {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

#seo-left button {
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    background-color: #CD8D53;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

#seo-summary ul {
    margin: 10px 0;
    padding-left: 20px;
}


.seo-graph-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.seo-graph-wrapper > canvas,
.seo-graph-wrapper > svg {
    min-width: 600px;
}
