﻿/* ===== Base UI ===== */
body {
    background-color: #f5f7fa;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    color: #232946;
    margin: 0;
}

/* ===== Top Bar ===== */
/* ===== Top Bar with RCS Logo Blue Background ===== */
.topbar {
    background-color: #0079C1 !important;
    padding: 12px 0 12px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e0e3e8;
}

    .topbar .topbar-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Ensures left alignment */
        padding-left: 18px; /* Optional: space from the edge */
    }

        .topbar .topbar-wrapper::before {
            content: "";
            background: url('/images/rcs-logo.svg') no-repeat left center;
            background-size: contain;
            display: inline-block;
            width: 300px;
            height: 90px;
            margin-right: 28px;
            vertical-align: middle;
        }

        .topbar .topbar-wrapper img,
        .topbar .topbar-wrapper span {
            display: none !important;
        }

        .topbar .topbar-wrapper > a:nth-child(1) {
            display: none !important;
        }



/* ===== JSON Input Field ===== */
input[type="text"] {
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 14px;
    border: 1px solid #ccd2da;
    background: #fff;
}

    input[type="text"]:focus {
        border-color: #0066cc;
        outline: none;
    }

/* ===== Explore Button ===== */
.swagger-ui .btn {
    background-color: #0066cc !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 8px 18px;
    font-weight: 600;
    border: none;
    transition: background 0.2s ease-in-out;
}

    .swagger-ui .btn:hover {
        background-color: #004a99 !important;
    }

/* ===== Endpoint Blocks ===== */
.swagger-ui .opblock {
    border-radius: 8px;
    margin: 12px 0;
    border-left: 5px solid #232946;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* ===== HTTP Method Colors ===== */
.opblock-get {
    border-left-color: #28a745;
}

.opblock-post {
    border-left-color: #007bff;
}

.opblock-put {
    border-left-color: #ffc107;
}

.opblock-delete {
    border-left-color: #dc3545;
}

.opblock-patch {
    border-left-color: #6f42c1;
}

/* ===== Operation Summary ===== */
.opblock-summary {
    font-size: 1rem;
    font-weight: 600;
    background: #f7f9fc;
    padding: 10px 16px;
    border-radius: 8px 8px 0 0;
    col
