/* Manual Page Specific Styles */
.manual-header {
    background: #f0f4f8;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.manual-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.manual-header p {
    color: #7f8c8d;
}

.manual-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
}

/* Sidebar */
.manual-sidebar {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.manual-sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-left: 4px solid #3498db;
    padding-left: 10px;
}

.manual-sidebar ul {
    list-style: none;
}

.manual-sidebar li {
    margin-bottom: 10px;
}

.manual-sidebar a {
    text-decoration: none;
    color: #555;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.manual-sidebar a:hover {
    background: #eef7ff;
    color: #3498db;
}

/* Content Area */
.manual-details {
    flex: 3;
}

.manual-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.manual-section h2 {
    color: #3498db;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    background: #3498db;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.alert-info {
    background: #e8f4fd;
    border-left: 5px solid #3498db;
    padding: 15px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .manual-content {
        flex-direction: column;
    }
    .manual-sidebar {
        position: static;
    }
}