/* Reset default list styling */
ul {
    list-style-type: none;
    margin: 0;
}

/* Center the main content */
body {
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Table styling */
table {
    border-collapse: collapse;
    margin: 0 auto;
}

td {
    padding: 5px;
    vertical-align: top;
}

/* Left sidebar styling */
td[bgcolor="#cccccc"] {
    width: 20%;
    text-align: right;
    background-color: #cccccc;
}

/* Logo styling */
#logo {
    height: 100px;
    width: 100px;
}

/* Section visibility */
#interfaces-section,
#downloads-section,
#layers-section {
    display: none;
}

/* Publish section styling */
#publish-section {
    margin: 20px;
}

#publish-status {
    margin-top: 10px;
}

/* Links styling */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* Layer list styling - first link (layer name) */
#layers-list li a:first-child {
    font-weight: bold;
    font-size: 1.2em;
} 

/* Help page styling */
.help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #cccccc;
    background-color: #f8f8f8;
}

.help-header h1 {
    margin: 0;
    color: #333;
    font-size: 2em;
}

.help-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    font-size: 1.1em;
    text-align: left;
}

.help-content h1,
.help-content h2,
.help-content h3,
.help-content h4,
.help-content h5,
.help-content h6 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.help-content h1 {
    font-size: 1.8em;
    border-bottom: 2px solid #cccccc;
    padding-bottom: 10px;
}

.help-content h2 {
    font-size: 1.5em;
    color: #555;
}

.help-content p {
    margin-bottom: 15px;
    color: #444;
}

.help-content ul,
.help-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.help-content li {
    margin-bottom: 8px;
    color: #444;
}

.help-content code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #d63384;
}

.help-content pre {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    overflow-x: auto;
    margin-bottom: 15px;
}

.help-content pre code {
    background-color: transparent;
    padding: 0;
    color: #333;
}

.help-content blockquote {
    border-left: 4px solid #cccccc;
    margin: 20px 0;
    padding-left: 20px;
    color: #666;
    font-style: italic;
}
