/* Table */


.table-cell-bold {
    font-weight: bold;
}

.table-cell-margin-right {
    margin-right: 10px;
}
.table-cell-sub-text-color {
    color: #596171;
}

.gx-card .gx-card-content {
    padding: 14px !important;
}

.underline {
    text-decoration: underline;
    background-color: #88FFCF;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}


.preview-code {
    margin-bottom: 25px;
}

.responsive-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    text-align: left;
}

thead {
    display: none;
}



tbody td {
    padding: 10px;
    vertical-align: top;
}

.code {
    padding-right: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.status {
    padding-right: 20px;
    white-space: nowrap;
}

.description {
    white-space: normal;
}

@media (max-width: 768px) {
    table, tbody, tr, td {
        display: block;
        width: 100%;
    }

    tbody tr {
        margin-bottom: 15px;
        border-bottom: 2px solid #ddd;
        padding-bottom: 10px;
    }

    td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        font-weight: bold;
    }

    .code::before {
        content: "Status Code";
    }

    .status::before {
        content: "Status";
    }

    .description::before {
        content: "Description";
    }
}


pre[class*=language-] {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}
code[class*=language-],pre[class*=language-] {
    font-size: 14px !important;
}

.language-selector-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between label and select */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    margin-bottom: 10px; /* Optional: space below the container */
    
}

.language-selector-container label {
    font-size: 16px; /* Adjust font size as needed */
}

.language-selector-block{
    color: #19433C !important;
    border-radius: 8px !important;
}




@media (max-width: 480px) {
    .language-selector-container {
        flex-direction: column; /* Stack label and select on smaller screens */
        align-items: flex-start;
    }

    .language-selector-container label,
    .language-selector-container select {
        width: 100%; /* Make both label and select take full width */
        
    }
}







