.object h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.formatted_args {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9fb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    margin-left: 20px;
}

.formatted_args ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.formatted_args ul li {
    font-family: 'Courier Prime', Courier, monospace !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    font-size: 1rem;
    margin-bottom: 10px;
    padding-right: 20px;
}

.formatted_args ul li b {
    font-weight: bold;
    color: #007acc; /* Blue for main argument names */
}

.formatted_args ul {
    color: #2c3e50; /* Dark slate for contrast */
}

/* Method Boxes */
.method {
    background-color: #ffffff;
    /* border: 1px solid #ddd; */
    /* border-radius: 8px; */
    padding: 20px;
    margin-bottom: 5px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.method h2 {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    border-bottom: 2px solid #3498db; /* Soft blue for separation */
    padding-bottom: 5px;
}

.method p {
    font-size: 16px;
    color: #333;
}

.method .args {
    font-size: 18px;
    font-weight: bold;
    color:#d35400; /* Warm orange for contrast */
    margin-left: 20px;
}

.object .args {
    font-size: 18px;
    font-weight: bold;
    color:#d35400; /* Warm orange for contrast */
    margin-left: 20px;
}

.doc {
    font-family: 'Courier Prime', Courier, monospace !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    font-size: 1.rem;
    margin-bottom: 10px;
}