/* docs.css */
body {
    color: #ddd;
}

.docs-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.docs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.docs-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.docs-header .glass-button {
    text-decoration: none;
}

/* We reuse the .login-form style, but call it .docs-box */
.docs-box {
    width: 100%;
    padding: 2.5rem;
    
    /* Re-using the glass effect from login.css */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    
    /* Ensure text is readable */
    color: #eee;
}

.docs-box h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.docs-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.docs-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.docs-box ul {
    list-style-position: inside;
    margin-left: 1rem;
    line-height: 1.8;
}

.docs-box li {
    margin-bottom: 0.5rem;
}

/* Style for example code blocks */
.code-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    overflow-x: auto; /* Adds scrollbar if code is too wide */
}