/* Project Management System Documentation Styles */
/* Theme: Dark Blue Sidebar with Light Grey/White Content */

body {
  font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8F9FA;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: #1A2B48;
    color: white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}
.center-col {
    max-width: 700px;
    margin: 0 auto;
}
.sidebar h1 {
    color: #2196F3;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600;
}

.sidebar .tagline {
    color: #B0BEC5;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.nav-section {
    margin-bottom: 30px;
}

.nav-section h3 {
    color: #90A4AE;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid #37474F;
    padding-bottom: 5px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 5px;
}

.nav-links a {
    color: #E3F2FD;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    background-color: #ffffff;
    color: #000000;
    border-radius: 50px;
    text-decoration: none;
}

.nav-links a.active {
    background-color: #2196F3;
    color: white;
    font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
    background-color: #F8F9FA;
}

.header {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.header h1 {
    color: #000000;
    margin: 0 0 10px 0;
    font-size: 30px;
    font-weight: 700;
}

.header .subtitle {
    color: #1A2B48;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.header p {
    color: #546E7A;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-info {
    color: #78909C;
    font-size: 0.95rem;
}

.section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section h2 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 600;
	margin-top: 0;
}

.section h3 {
    color: #1A2B48;
    margin: 25px 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.section h4 {
    color: #1A2B48;
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-card {
    background: #F8F9FA;
    border: 1px solid #E3F2FD;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-card h4 {
    color: #1A2B48;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.security-badge {
    background: #2196F3;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
}

.success-box {
    background: #E8F5E8;
    border: 1px solid #4CAF50;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    color: #2E7D32;
}

.info-box {
    background: #E3F2FD;
    border: 1px solid #2196F3;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    color: #1565C0;
}

.warning-box {
    background: #FFF3E0;
    border: 1px solid #FF9800;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    color: #E65100;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 50px;
    position: relative;
    color: #37474F;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #2196F3;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.code-block {
    background: #263238;
    color: #E0E0E0;
    padding: 20px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    margin: 15px 0;
    border-left: 4px solid #2196F3;
}

.code-block pre {
    margin: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

th {
    background-color: #1A2B48;
    color: white;
    font-weight: 600;
}

tr:hover {
    background-color: #F5F5F5;
}

ul, ol {
    color: #37474F;
    line-height: 1.8;
}

ul li, ol li {
    margin-bottom: 8px;
}

strong {
    color: #1A2B48;
    font-weight: 600;
}

a {
    color: #2196F3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    background: #1A2B48;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.quick-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.permission-category {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.permission-category h5 {
    margin: 0 0 0.5rem 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
}

.permission-category ul {
    margin: 0;
    padding-left: 1.2rem;
}

.permission-category li {
    margin: 0.25rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .permission-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
        padding: 0;
    }
    
    .header {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}
