﻿body {
    background: #f9fafb;
}

.opblock-description-wrapper .opblock-description .renderedMarkdown p {
    font-size: 13px;
    line-height: 1.6;
    color: #333; /* You can customize this color as needed */
    font-family: Arial, sans-serif; /* Adjust the font family if necessary */
}

.opblock-description-wrapper {
    padding: 0px 20px;
}
/*KayanLogo*/
img[alt="Swagger UI"] {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    content: url('/swagger-ui/kayan-final-4.png');
    max-width: 100%;
    max-height: 100%;
    filter: brightness(1.05); /* Slightly reduced brightness for a more balanced logo */
}

.swagger-ui .topbar {
    background-color: #193048; /* Primary blue background */
    padding: 15px 0;
    text-align: center; /* Centers the logo */
    /*border-bottom: 3px solid #ef5d5f;*/ /* Secondary red for contrast */
}

html:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1021;
    width: 100%;
    height: .1875rem;
    background: #0094ff;
    background: linear-gradient(to right, #abe78a, #1268b2, #ef5d5f);
}

.swagger-ui .topbar img {
    max-width: 120px !important;
    padding: 0;
    /*background-color: #8ebc6b;*/
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.ss {
    color: blue !important;
}
/*KayanLogo*/

/*Description Section*/
.swagger-ui .info {
    margin: 40px 0px 20px 0px;
}

.swagger-ui .description {
    display: flex; /* Use flex to align items */
    align-items: center; /* Center the items vertically */
    color: #1268b2; /* Text color */
    font-weight: bold; /* Bold text */
    font-size: 1.1em; /* Font size */
    border: 1px solid #ef5d5f; /* Border color */
    padding: 10px; /* Padding around the text */
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: soft shadow for depth */
    position: relative; /* Position relative for proper positioning of dot */
}

.flashing-dot {
    display: inline-block; /* Dot width */
    width: 10px; /* Dot width */
    height: 10px; /* Dot height */
    border-radius: 50%; /* Make it circular */
    background-color: #ef5d5f; /* Initial color */
    margin-right: 8px; /* Space between dot and text */
    animation: flash 1s infinite; /* Apply the flashing animation */
}

/* Keyframes for flashing animation */
@keyframes flash {
    0%, 100% {
        opacity: 1; /* Fully visible */
    }

    50% {
        opacity: 0; /* Fade out */
    }
}
/*Description Section*/
.scheme-container {
    box-shadow: none !important;
    background-color: transparent !important;
}

input[type="file"]::file-selector-button {
    background-color: white;
    border-radius: 4px;
    padding: 0 16px;
    height: 30px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    transition: background-color 200ms;
}

    input[type="file"]::file-selector-button:hover {
        background-color: #f3f4f6;
    }

    input[type="file"]::file-selector-button:active {
        background-color: #e5e7eb;
    }