.important-box {
    margin-left: 40px;
    width: 90% !important;
    background-color:rgb(214, 149, 149);
    color: #333;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px rgb(251, 106, 106);
    font-size: 18px;
    text-align: left;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
.green-box {
    margin-left: 40px;
    width: 90% !important;
    background-color:rgb(162, 214, 149);
    color: #333;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px rgb(53, 75, 48);
    font-size: 18px;
    text-align: left;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
.api-endpoint {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}
.code-block {
    background-color: #282c34;
    color: #abb2bf;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    margin: 10px 0;
}
.json-column {
    background-color: #282c34;
    color: #abb2bf;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 15px;
}
.json-column pre {
    margin: 0;
    background-color: transparent;
    color: #abb2bf;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    line-height: 1.5;
    font-size: 14px;
}
.json-column code {
    background-color: transparent;
    color: #abb2bf;
    font-family: 'Courier New', monospace;
    white-space: pre;
    display: block;
}
.json-column .hljs-number {
    color: #d19a66;
}
.json-column .hljs-literal {
    color: #56b6c2;
}
.json-column .hljs-string {
    color: #98c379;
}
.json-column .hljs-attr {
    color: #e06c75;
}
.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4a5568;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 10;
}
.copy-button:hover {
    background-color: #2d3748;
}
.copy-button.copied {
    background-color: #48bb78;
}
.copy-button.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.copy-button.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.json-wrapper {
    position: relative;
}
.method-get {
    color: #28a745;
    font-weight: bold;
}
.method-post {
    color: #007bff;
    font-weight: bold;
}
* {
    word-break: keep-all;
    white-space: normal;
    overflow-wrap: break-word;
}
.flag-icon {
    margin-right: 8px;
    font-size: 16px;
}
.dropdown-item.active {
    font-weight: bold;
    background-color: #e9ecef;
}
.alert a {
    color: #C00000;
    text-decoration: none;
    background-color: transparent;
}
