html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* From _Layout.cshtml.css */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

/* End _Layout.cshtml.css */


.note-editor {
    box-sizing: border-box; /* Fit parent width */
    height: 400px;
}


/*form.edit-form {*/
/*    margin: 0 auto;*/
/*    padding: 20px;*/
/*    background-color: #ffffff;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
/*}*/

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.content-wrapper pre {
    background-color: #f8f9fa; /* Light background */
    padding: 1rem; /* Padding */
    border-radius: 0.5rem; /* Rounded corners */
    overflow-x: auto; /* Horizontal scroll */
    margin-left: 2.0em;
    margin-right: 2.0em;
}
.content-wrapper code {
    color: #343a40; /* Code text color */
}

.link-button {
    background: none;
    color: blue;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 1em;
}

@page {
    /* TODO: Not working as expected yet */
    margin-left: 0.5in;
    margin-right: 0.5in;
}

@media print {

    /* Elements to hide when printing the page */
    .navbar, .actions, .footer {
        display: none !important;
    }

    /* Ensure content is visible */
    .content {
        display: block;
        /*margin: 0 !important;*/
        /*padding: 0 !important;*/
    }
}