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;
}

.form-block {
    width: 500px;
    margin: 2%;
    font-family: Arial, sans-serif;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-label {
    width: 150px;
    font-weight: bold;
}

.form-input,
.form-select {
    flex: 1;
    padding: 6px;
    box-sizing: border-box;
}

.form-checkbox {
    padding: 6px;
    box-sizing: border-box;
}

.form-button {
    margin-top: 20px;
    padding: 8px 12px;
    background-color: #2a7ae2;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

.form-button:hover {
    background-color: #1f5bb5;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 8px;
    text-align: left;
}

button {
    margin-right: 5px;
}

.footer {
    position: absolute !important;
    bottom: 0 !important;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center !important;
}

