:root {
    --primary-color: #eb5d37;
    --secondary-color: #222;
    --accent-color: #eb5d37;
    --accent2-color: #c1d0d5;
    --background-color: #f5f8fa;
    --code-bg: #f1f3f5;
    --text-color: #333;
    --method-get: #eb5d37;
    --method-post: #222;
    --table-border: #eaeaea;
}

body {
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}

h2 {
    color: var(--primary-color);
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

h3 {
    color: var(--secondary-color);
    margin-top: 30px;
}

code {
    font-family: 'Courier New', Courier, monospace;
    background-color: var(--code-bg);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.9em;
}

pre {
    background-color: var(--code-bg);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 10px 15px;
    text-align: left;
    border: 1px solid var(--table-border);
}

th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.endpoint {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.endpoint-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.method {
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    min-width: 60px;
    text-align: center;
}

.get {
    background-color: var(--method-get);
}

.post {
    background-color: var(--method-post);
}

.patch {
    background-color: #f39c12;
}

.delete {
    background-color: #e74c3c;
}

.endpoint-path {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}

.section {
    margin-bottom: 20px;
}

.section-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 40px 0;
}

.navigation {
    position: sticky;
    top: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

    .navigation h3 {
        margin-top: 0;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .navigation ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .navigation li {
        margin-bottom: 8px;
    }

        .navigation li a {
            color: var(--primary-color);
            text-decoration: none;
        }

            .navigation li a:hover {
                text-decoration: underline;
            }

.layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .navigation {
        position: relative;
        top: 0;
    }
}

.highlight {
    background-color: rgba(235, 93, 55, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.warning {
    background-color: rgba(193, 208, 213, 0.1);
    border-left: 4px solid var(--accent2-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.logo {
    max-width: 300px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.gradient-bg {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
}