
.wrap {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

h1 {
    padding-bottom: 5px;
    margin-top: 20px;
}

h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-top: 20px;
}

form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);

    margin-bottom: 15px;
}

.form-group label {
    flex: 1;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="checkbox"] {
    display: flex;
    flex-grow: 1;
    flex: 2;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group input[type="checkbox"] {
    width: auto;
}

.my-color-field {
    width: 100px;
}

button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    /* margin-top: 10px; */
}

button:hover {
    background: #005177;
}

#top-panel-links-container,
#sections-container {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section, .link {
    display: flex;
    width:100%;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
}

.section button,
.link button {
    align-self: flex-start;
}



.spacerW10{
    width:10px;
}

.spacerH10{
    height:10px;
}
.settings-option-div{
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    /* justify-content: space-between; */
}

.red-text{
    color:red;
}


