.detail-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.detail-title {
    font-size: 22px;
    color: #d53e07;
}

.detail-desc {
    color: rgb(88, 88, 88);
    font-size: 13px;
}

.detail-image {
    border-radius: 22px;
    max-width: 100%;
}

.detail-content {
    width: 100%;
    max-width: 100%;
}

.detail-content a {
    color: #d53e07;
}

.detail-content mark {
    background-color: #fa7848;
}

.detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

.detail-content li {
    position: relative;
    left: 40px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

.detail-content pre code {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
    line-height: 1.5;
    background-color:#f9f9f9;
    color:#24292e; 
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow-x: auto;
}

.table {
    overflow: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

table {
    min-width: max-content;
    border-collapse: collapse;
    overflow: auto;
}
  
td, th {
    white-space: wrap;
    max-width: 500px; 
    padding: 8px;
    border: 1px solid #ccc;
}

blockquote {
    border-left: 4px solid #d53e07;
    padding-left: 5px;
    margin-left: 30px;
}

@media (max-width: 1055px) {
    blockquote {
        border-left: 3px solid #d53e07;
        margin-left: 20px;
    }
    .detail-content li {
        left: 20px;
    }
}



