html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@font-face {
    font-family: 'Museo Sans 300';
    src: url('/fonts/MuseoSans_300-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo Sans 700';
    src: url('/fonts/MuseoSans_700-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo Sans 900';
    src: url('/fonts/MuseoSans_900-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.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;
}
/* General Styles */
body {
    font-family: 'Museo Sans 300', /* Museo Sans or Calibri */ Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}
/*
thead {
    font-family: 'Museo Sans 900';
}
*/
.container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    font-family: 'Museo Sans 900';
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

h3 {
    color: #e74c3c;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

input[type="text"] {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

    input[type="text"]:focus {
        border-color: #3498db;
        background-color: white;
        box-shadow: 0 0 8px rgba(52, 152, 219, 0.2);
        outline: none;
    }

button[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover {
        background-color: #2980b9;
    }

.error {
    color: #e74c3c;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.form-group input {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

button[type="submit"]:focus {
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

img#navigation {
    /*width: 750%;*/
    width: 20em;
    height: 100%;
}

.fs-4 {
    font-family: 'Museo Sans 900';
}

.alert-info {
    color: #004750;
    background-color: #b1e3e3;
    border-color: #b1e3e3;
}

.alert-warning {
    color: #784d28;
    background-color: #f9e0a4;
    border-color: #f9e0a4;
}

/* Adding custom styles for blue and white theme */
#total-amount {
    font-weight: bold;
    color: #00b3be;
}

#progress-bar {
    transition: width 0.3s ease;
    background-color: #00b3be;
}

.btn-primary {
    background-color: #00b3be !important;
    border-color: #00b3be !important;
}

    .btn-primary:hover {
        background-color: #0099a8 !important;
        border-color: #0099a8 !important;
    }

.form-check-input:checked {
    background-color: #00b3be !important;
    border-color: #00b3be !important;
}