﻿/* See documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

html {
    font-family: sans-serif;
}

/* Align and widen the Tenant and Token inputs on Home/Index */
#testForm label {
    display: inline-block;
    width: 180px; /* fixed label width to align inputs */
    margin-right: 8px;
    vertical-align: middle;
}

#testForm input#reportServer,
#testForm input#tenant,
#testForm input#token {
    width: 600px; /* wider inputs */
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive: stack labels and inputs on narrow screens */
@media (max-width: 700px) {
    #testForm label {
        display: block;
        width: 100%;
        margin: 0 0 4px 0;
    }
    #testForm input#reportServer,
    #testForm input#tenant,
    #testForm input#token {
        width: 100%;
    }
}
