﻿.documentation-link-icon {
    margin-left: 7px;
    margin-right: 3px;
    color: lightblue;
}

.documentation-card {
    border: 1px solid #e7eaec;
    border-radius: 3px;
    margin-bottom: 20px;
    background-color: #fff;
    transition: box-shadow 0.3s;
}

    .documentation-card:hover {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

.documentation-card-header {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #e7eaec;
    color: white; /* Ensure text is visible on colored background */
}

.documentation-card-body {
    padding: 20px;
}

.markdown-description {
    margin-top: 10px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 3px;
    border: 1px solid #e7eaec;
}

    .markdown-description ul,
    .markdown-description ol {
        padding-left: 15px;
    }

    .markdown-description h1,
    .markdown-description h2,
    .markdown-description h3,
    .markdown-description h4,
    .markdown-description h5,
    .markdown-description h6 {
        margin-top: 15px;
        margin-bottom: 10px;
        line-height: 1.25;
    }

    .markdown-description h1 {
        font-size: 24px;
    }

    .markdown-description h2 {
        font-size: 22px;
    }

    .markdown-description h3 {
        font-size: 20px;
    }

    .markdown-description h4 {
        font-size: 18px;
    }

    .markdown-description h5 {
        font-size: 16px;
    }

    .markdown-description h6 {
        font-size: 14px;
    }

/* Print styles */
@media print {
    .documentation-card {
        box-shadow: none;
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .documentation-card-header,
    .documentation-card-body {
        background-color: #fff !important;
        color: #000 !important;
    }

    .markdown-description {
        background-color: #fff;
        border: none;
    }

        .documentation-card-header h3,
        .markdown-description h1,
        .markdown-description h2,
        .markdown-description h3,
        .markdown-description h4,
        .markdown-description h5,
        .markdown-description h6 {
            color: #000;
        }

    .team-count-link {
        text-decoration: none;
        color: black;
        pointer-events: none;
    }
}
