
/* General container */
.hexawx-schema-guide {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    max-width: 900px;
    margin: 20px auto;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Headings */
.hexawx-schema-guide h1 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 1rem;
}

.hexawx-schema-guide h2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 1rem;
    color: #104b4b; /* Dark teal */
}

/* Section styling: white card with subtle shadow and border */
.hexawx-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
    border: 1px solid #e1e1e1;
}

/* Info box with pastel background and colored left border */
.hexawx-info-box {
    background: #e8f5ff; /* pastel light blue */
    border-left: 5px solid #104b4b; /* dark teal accent */
    padding: 15px 20px;
    border-radius: 6px;
    color: #134d4d;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Getting Started steps - multi-column flex with numbered circles */
.hexawx-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hexawx-step {
    flex: 1 1 200px;
    display: flex;
    align-items: flex-start;
}

.hexawx-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ae37ff, #7727ff);
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    box-shadow: 0 0 10px #ae37ff80;
}

.hexawx-step-content strong {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.hexawx-step-content {
    font-size: 14px;
    color: #444;
}

/* Code block styling - dark theme, scrollable */
.hexawx-code-block {
    background: #0d1117; /* very dark background */
    color: #c9d1d9;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 8px;
    padding: 15px 20px;
    overflow-x: auto;
    max-height: 300px;
    box-shadow: inset 0 0 5px #2f363d;
    border: 1px solid #30363d;
    margin-bottom: 30px;
}

/* Lists and links */
.hexawx-schema-guide ul,
.hexawx-schema-guide ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.hexawx-schema-guide ul li,
.hexawx-schema-guide ol li {
    margin-bottom: 8px;
    font-size: 14px;
}

.hexawx-schema-guide a {
    color: #0073aa;
    text-decoration: none;
}

.hexawx-schema-guide a:hover {
    text-decoration: underline;
}

/* Validation Tools Box with border and flex columns */
.hexawx-validation-tools {
    border: 1px solid #8160ff;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.hexawx-validation-tool {
    flex: 1;
    background: #f4f5ff;
    border-radius: 6px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.hexawx-validation-tool:hover {
    background: #e0e2ff;
    border-color: #8160ff;
}

.hexawx-validation-tool strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.hexawx-validation-tool small {
    font-size: 13px;
    color: #5a5a5a;
}

/* Best Practices section with warm pastel background and side border */
.hexawx-best-practices {
    background: #fff6e5;
    border-left: 6px solid #f5b642;
    padding: 18px 20px;
    border-radius: 6px;
    font-size: 14px;
    color: #503a03;
    line-height: 1.5;
}

.hexawx-best-practices ul {
    margin-left: 20px;
}

.hexawx-best-practices li {
    margin-bottom: 8px;
}


/* settings page  */

