/* GLOBAL */
body {
    font-family: Verdana, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

#container {
    display: flex;
    width: 100%;
    min-height: 80vh;
}

/* MAIN WRAPPER (auto‑margin script adjusts spacing) */
#tools-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    transition: margin 0.2s ease;
}

/* MAIN CONTENT */
#tools-content {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-title {
    font-size: 22px;
    margin-bottom: 20px;
}

/* BOXES */
.tool-box {
    background: #ffffff;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.tool-box h2 {
    background: #e6e6e6;
    padding: 10px;
    margin: 0;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
}

.tool-inner {
    padding: 15px;
    font-size: 14px;
}

.tool-inner ul {
    margin: 0;
    padding-left: 20px;
}

.note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* STATUS COLORS */
.status-green {
    color: #0a8a0a;
    font-weight: bold;
}

.status-red {
    color: #c00;
    font-weight: bold;
}

/* OPTIONAL: Sidebar defaults (auto-detect script overrides margins) */
.left-sidebar,
.right-sidebar {
    width: 220px; /* fallback only */
}

.tool-box h2 svg {
    vertical-align: middle;
    margin-right: 6px;
}
