/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Table of Contents Styles */
.rocketship-toc {
    /* These styles will be overridden by inline styles from PHP */
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    font-size: 15px;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.rocketship-toc-title {
    /* These styles will be overridden by inline styles from PHP */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

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

.rocketship-toc-list ul {
    /* This will be overridden by inline styles from PHP */
    margin: 8px 0 8px 20px;
    padding: 0;
    list-style: none;
}

.rocketship-toc-item {
    /* This will be overridden by inline styles from PHP */
    margin: 8px 0;
}

.rocketship-toc-item a {
    /* These styles will be overridden by inline styles from PHP */
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.rocketship-toc-item a:hover {
    /* This will be overridden by inline styles from PHP */
    color: #004c99;
    text-decoration: underline;
}

.rocketship-toc-number {
    /* This will be overridden by inline styles from PHP */
    color: #666;
    margin-right: 8px;
    font-weight: 500;
}

/* Level-specific styles - these will be overridden by inline styles from PHP */
.rocketship-toc-item.level-2 {
    font-weight: 500;
}

.rocketship-toc-item.level-3 {
    font-size: 14px;
}

.rocketship-toc-item.level-4 {
    font-size: 13px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .rocketship-toc {
        padding: 15px;
        margin: 20px 0;
    }

    .rocketship-toc-title {
        font-size: 18px;
    }

    .rocketship-toc-list ul {
        margin-left: 15px;
    }
}