﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

.swagger-ui .topbar {
    background-color: #231f20 !important;
}


.swagger-ui .btn {
    background-color: #A8B5A8; /* Silvery green */
    color: #FFFFFF; /* White text */
}

.swagger-ui .opblock-summary {
    background-color: #f5f5f5; /* Light gray */
    border-left: 4px solid #006400; /* Dark green accent */
}

/* Hides the link in the Swagger topbar */
.swagger-ui .topbar .link {
    display: none !important; /* Ensures that it is hidden */
}

/* Hide the /swagger/v1/swagger.json hyperlink in Swagger UI */
.swagger-ui .info hgroup.main a.link {
    display: none !important;
}
.swagger-ui .info .title .version,
.swagger-ui .info .title .version-stamp {
    display: none !important;
}
.swagger-ui .info .title span,
.swagger-ui .info .title small {
    display: none !important;
}


.swagger-ui .response-col_status {
    font-weight: bold;
    border-radius: 4px;
    padding: 4px 8px;
}

.swagger-ui .response-col_status[title^="2"] {
    background-color: #28a745; /* Green for success */
    color: white;
}

.swagger-ui .response-col_status[title^="4"] {
    background-color: #ffc107; /* Yellow for client errors */
    color: black;
}

.swagger-ui .response-col_status[title^="5"] {
    background-color: #dc3545; /* Red for server errors */
    color: white;
}
.swagger-ui .topbar .topbar-wrapper {
    display: flex;
    align-items: center;
}

    .swagger-ui .topbar .topbar-wrapper::before {
        content: "";
        background: url('/Images/Logo.png') no-repeat;
        background-size: contain;
        display: inline-block;
        height: 100px; /* Adjust height to your logo */
        width: 400px; /* Adjust width to your logo */
        margin-right: 10px;
    }

.swagger-ui .btn.try-out {
    background-color: #006400; /* Dark green */
    color: #FFFFFF; /* White */
    border: none;
}

.swagger-ui .btn.execute {
    background-color: #A8B5A8; /* Silvery green */
    color: black;
}
.swagger-ui .response-col_description pre {
    background-color: #f8f9fa; /* Light gray background */
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    border: 1px solid #e1e1e1;
}
body .swagger-ui .welcome-message {
    font-size: 80px !important; /* Increase font size */
    font-weight: bold !important; /* Make text bold */
    color: #4CAF50 !important; /* You can change the color */
    text-align: center !important; /* Center the text */
    margin-bottom: 30px !important; /* Add space below */
    padding: 20px !important; /* Add some padding around the message */
    background-color: #f0f0f0 !important; /* Optional: Add background color */
    border-radius: 10px !important; /* Optional: Rounded corners */
}
.swagger-ui .info .description .renderedMarkdown p {
    font-size: 15px !important; /* Increase font size */
    line-height: 1.5 !important; /* Optional: Adjust line height for better readability */
}
.swagger-ui .topbar .download-url-wrapper {
    display: none !important;
}

/* Style for the video container */
.video-container {
    width: 100%;
    max-width: 600px; /* Limit the max width of the video */
    margin: 0 auto; /* Center align the video */
    padding: 5px; /* Optional: Space around the video */
}

    /* Ensures that the video takes up the correct ratio */
    .video-container iframe {
        width: 100%;
        height: 100%;
    }
.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

    .card h4 {
        color: #333;
        margin-bottom: 10px;
    }

    .card p {
        color: #555;
    }

    .card a {
        color: #0077B5;
        text-decoration: none;
        font-weight: bold;
    }

        .card a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
}







