/* _content/calculator/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please 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. */

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

a[b-cv6fc997je] {
  color: #0077cc;
}

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

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

.border-top[b-cv6fc997je] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-cv6fc997je] {
  border-bottom: 1px solid #e5e5e5;
}

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

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

.footer[b-cv6fc997je] {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* _content/calculator/Views/Shared/_BasicCalculator.cshtml.rz.scp.css */
.calculator[b-lni0kr7rne] {
    max-width: 320px;
    width: 90vw;
    margin: 5vh auto;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.display[b-lni0kr7rne] {
    width: 98%;
    height: 50px;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 1.5em;
    border: none;
    border-radius: 4px;
    background-color: #f0f0f0;
    text-align: right;
}

.button-row[b-lni0kr7rne] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.button[b-lni0kr7rne] {
    flex: 1;
    margin: 2px;
    height: 40px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .button:hover[b-lni0kr7rne] {
        background-color: #e5e5e5;
    }

    .button:active[b-lni0kr7rne] {
        background-color: #d0d0d0;
    }

    /* Styling for the operator buttons */
    .button.operator[b-lni0kr7rne] {
        background-color: #ffad33;
        color: white;
    }

        .button.operator:hover[b-lni0kr7rne] {
            background-color: #ff9933;
        }

        .button.operator:active[b-lni0kr7rne] {
            background-color: #ff8800;
        }

/* Media queries to adjust button size for larger screens */
@media(min-width: 600px) {
    .button[b-lni0kr7rne] {
        height: 50px;
        font-size: 1.2em;
    }

    .display[b-lni0kr7rne] {
        height: 60px;
        font-size: 1.7em;
    }
}
