/* General styles for the How to Use page */
.how-to-section {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.how-to-section h2 {
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
    margin-top: 0;
}

.how-to-section p,
.how-to-section ol {
    line-height: 1.7;
    color: #555;
}

.how-to-section ol {
    padding-left: 20px;
}

.how-to-section li {
    margin-bottom: 10px;
}

.how-to-section code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    color: #d63384;
}

.how-to-section strong {
    color: #333;
}

/* Table of Contents */
.toc {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.toc h2 {
    margin-top: 0;
    color: #333;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    text-decoration: none;
    color: #667eea;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: #764ba2;
}

/* Back link */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #667eea;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}
