﻿body {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ClientInfo {
    margin: 4px auto;
    border: 1px solid #ddd;
    padding: 0 5px;
    max-width: 500px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

    .ClientInfo table {
        width: 100%;
        border-collapse: collapse;
    }

    .ClientInfo td {
        padding: 5px;
        text-align: left;
        border-bottom: 1px solid #eee;
        font-size: 12px;
    }

    .ClientInfo .header {
        font-weight: bold;
        width: 130px;
        color: #194868;
        padding-right: 10px;
        text-align: right;
    }

@media only screen and (min-width: 741px) {
    .statEntryContainer {
        width: 99%;
        max-width: 740px;
        margin: 0 auto;
        background-color: white;
        padding: 5px;
        justify-items: left;
    }

    .statSection {
        margin: 8px 0;
        display: grid;
        grid-template-columns: 200px 150px auto;
        justify-content: left;
        align-items: center;
        gap: 15px;
    }

    .statFormControls {
        margin: 10px auto;
        display: grid;
        grid-template-columns: 200px 200px;
        justify-content: center;
        gap: 15px;
    }

    .statLabel {
        font-weight: bold;
        min-width: 200px;
        text-align: right;
        padding-top: 8px;
    }

    .statInput {
        min-width: 150px;
        height: 31px;
    }

        .statInput input, .statInput select {
            width: 140px;
            height: 31px;
            padding: 4px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

    .statExample {
        font-size: 12px;
        color: #666;
        max-width: 350px;
        text-align: left;
        line-height: 1.4;
    }

    .mobile-br {
        display: none;
    }
}

@media only screen and (max-width: 740px) {
    .statEntryContainer {
        min-width: 300px;
        margin: 0 auto;
        background-color: white;
        padding: 5px;
        justify-items: left;
        column-count: 1;
        break-inside: avoid-column;
        align-items: center !important;
    }

    .statSection {
        margin: 8px 0;
        min-width: 300px;
        display: block;
        justify-content: left;
        align-items: center;
        gap: 15px;
        break-inside: avoid-column;
    }

    .statFormControls {
        margin: 10px auto;
        display: block;
        grid-template-columns: 200px 200px;
        justify-content: center;
        gap: 15px;
        overflow-wrap: break-word;
    }

    .statLabel {
        font-weight: bold;
        min-width: 225px;
        text-align: right;
        padding-top: 8px;
        margin-right: 10px;    
        align-items: center;
    }

    .statInput {
        min-width: 125px;
        height: 31px;
        align-items: center;
    }

        .statInput input, .statInput select {
            width: 125px;
            height: 31px;
            padding: 4px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
            align-items: center;
        }

    .statExample {
        font-size: 12px;
        color: #666;
        max-width: 350px;
        text-align: left;
        line-height: 1.4;
    }

    .mobile-br {
        display: block;
    }
}
    .alert {
        padding: 10px;
        margin: 15px 0;
        border-radius: 4px;
        font-weight: bold;
    }

    .alert-danger {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    .alert-success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .btn {
        padding: 5px 20px;
        margin: 5px;
        font-size: 14px;
        cursor: pointer;
        border: none;
        border-radius: 4px;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary {
        background-color: #1172a3;
        color: white;
    }

        .btn-primary:hover {
            background-color: #0b3d57;
        }

    .btn-secondary {
        background-color: #6c757d;
        color: white;
    }

        .btn-secondary:hover {
            background-color: #545b62;
        }

    .form-group {
        margin: 10px 0;
    }

        .form-group label {
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }

        .form-group input {
            padding: 4px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

    .validation-summary-errors {
        color: #dc3545;
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        border-radius: 4px;
        padding: 10px;
        margin: 10px 0;
    }

        .validation-summary-errors ul {
            margin: 0;
            padding-left: 20px;
        }

    .field-validation-error {
        color: #dc3545;
        font-size: 12px;
    }

    .disclaimer {
        font-size: 9pt;
        color: #015cfb;
        max-width: 85%;
        margin: 20px auto;
        line-height: 1.3;
    }

    .statHeaderContainer {
        display: grid;
        grid-template-columns: 100px auto;
        max-width: 1000px;
        margin: 0 auto;
        padding: 15px;
        border: 2px solid #948f58;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgb(149 131 34);
        background: #0e2a37;
        background: radial-gradient(circle, rgba(14, 42, 55, 1) 0%, rgba(21, 112, 167, 1) 45%, rgba(63, 158, 216, 1) 100%);
    }

    @media only screen and (max-width: 600px) {
        .statHeaderTitle {
            font-size: larger;
            display: block;
            color: #eeeeee;
            align-content: center;
            padding-left: 50px;
        }
    }

    @media only screen and (min-width: 601px) {
        .statHeaderTitle {
            font-size: x-large;
            display: block;
            color: #eeeeee;
            align-content: center;
        }
    }

    .logo {
        margin: 10px 0;
    }

    .stats-image {
        margin: 0 0;
    }
