.request {
    margin: 3rem 0;
    padding: 1.5rem;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    contain: layout style paint;
}
.request-title {
    margin: 0 0 1rem;
    color: #1a1a1a;
}
.responses-title {
    margin-bottom: 1vh;
}
.request-description {
    margin-bottom: 1.5rem;
    color: #666;
} 
.endpoints-group h2 {
    font-weight: normal;
}
.request-examples {
    margin-bottom:1vh;
}
.copy-btn {
    background: 0 0;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: .75rem;
    margin: 0.5rem;
    width: 40px;
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    right: 0;
    z-index: 1000;
    height: 40px;
}
.something .strong {
    display: inline-block; 
    width: 50px;           
    text-align: center;    
    box-sizing: border-box; 
}
.response-body-cell {
    position: relative;
}
.response-container {
    position: relative;
}
.response-content {
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 0;
}
.view-more-btn {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    border: none;
    border-radius: .5em;
    cursor: pointer;
    font-size: 12px;
    z-index: 10;
    width: 100px;
    height: 30px;
    display: none;
    white-space: normal !important;
    font-family: system-ui, sans-serif !important;
    line-height: normal !important;
    letter-spacing: normal !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    color: #bbb;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
}
.view-more-btn:hover {
    color: white;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2) !important;
}

/* Modal Styles */
.modal-lg {
    width: 90%;
    max-width: 1200px;
}

.response-modal-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #2d2d2d;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
}

.response-format-label {
    color: #888;
    font-size: 12px;
    font-family: monospace;
}

.copy-modal-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 2px;
}

.copy-modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-response-content {
    margin: 0;
    max-height: 70vh;
    overflow-y: auto;
    background: #1e1e1e;
    border-radius: 0 0 4px 4px;
}

.modal-response-content code {
    background: transparent;
    color: #d4d4d4;
    font-size: 13px;
    line-height: 1.4;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-body {
    padding: 20px;
    background: #f8f9fa;
}