body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fa;
    color: #2d3748;
    line-height: 1.6;
}

.backend-info {
    min-height: calc(100vh - 60px);
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.status-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.status-indicator {
    height: 4px;
    background: #48bb78;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem;
    color: #2d3748;
}

.api-status {
    margin-bottom: 1.5rem;
}

.status-badge {
    background: #48bb78;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.description {
    color: #4a5568;
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.info-list li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-docs {
    background: #1a1a1a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-docs:hover {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* Endpoint Card Styles */
.endpoint-doc .card-header {
    cursor: pointer;
}

.endpoint-doc .card-header:hover {
    background-color: rgba(0,0,0,0.05);
}

.endpoint-doc .collapse-indicator {
    transition: transform 0.3s;
}

.endpoint-doc .collapsed .collapse-indicator {
    transform: rotate(-90deg);
}

.endpoint-row {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #fff;
    transition: all 0.2s ease;
}

.endpoint-row:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-color: #dee2e6;
}

.endpoint-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.method {
    font-family: monospace;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.method.get {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.method.post {
    background-color: #e8f5e9;
    color: #1b5e20;
}

.path {
    font-family: monospace;
    font-size: 0.875rem;
    color: #424242;
}

.endpoint-info {
    margin-top: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #f5f5f5;
    color: #616161;
}

.tag.rate-limit {
    background-color: #fff3e0;
    color: #e65100;
}

code {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 0.125rem 0.25rem;
    border-radius: 3px;
    font-size: 0.875rem;
    color: #424242;
}

.btn-copy {
    background: none;
    border: none;
    padding: 0.25rem;
    color: #9e9e9e;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-copy:hover {
    color: #616161;
}

.text-muted {
    color: #757575;
}

.small {
    font-size: 0.875rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.endpoint-row {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s;
}

.endpoint-row:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.endpoint-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.method {
    font-family: monospace;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    min-width: 60px;
    text-align: center;
}

.method.get {
    background: #ebf8ff;
    color: #2b6cb0;
}

.method.post {
    background: #f0fff4;
    color: #2f855a;
}

.path {
    font-family: monospace;
    color: #4a5568;
    font-size: 0.875rem;
}

.endpoint-info {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: calc(60px + 1.5rem);
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: #f7fafc;
    color: #4a5568;
}

.tag.rate-limit {
    background: #fff5f5;
    color: #c53030;
}

.btn-copy {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: #718096;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-copy:hover {
    background: #f7fafc;
    color: #4a5568;
}

.btn-copy svg {
    display: block;
}

.path {
    color: #4a5568;
    font-family: monospace;
}

.footer {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-top: 1px solid #e2e8f0;
    color: #718096;
}

a {
    color: #3182ce;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}