body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f5f5f5;
}
h1 {
    color: #1a73e8;
}
.container {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
}
.form_div {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 350px;
}
.proxy_div {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 810px;
    margin-bottom: 20px;
}
.current_values {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 400px;
}
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
input[type="text"], input[type="number"], select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type="submit"] {
    background-color: #1a73e8;
    color: white;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-top: 20px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
}
input[type="submit"]:hover {
    background-color: #1557b0;
}
.proxy_div select {
    width: auto;
}
.proxy_div input[type="submit"] {
    width: auto;
}
pre {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 12px;
}
h3 {
    color: #333;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 10px;
}

.set-attributes td:first-child {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    font-size: 14px;
    padding-right: 10px;
}

.set-attributes td.subattribute {
    padding-left: 20px;
}

.set-attributes td.section {
    background-color: #e9ecef;
    font-weight: bold;
    padding: 5px 5px;

}
