body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
}

nav {
    margin-top: 1.5rem;
    margin-left: 1.2rem;
    margin-bottom: 0.1rem;
}

.breadcrumb {
    margin-bottom: 0.2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 15px auto;
}

    .container img {
        display: inline-block;
    }

.bp-card {
    /* border: 1px solid #ccc; padding: 15px; margin-bottom: 10px; border-radius: 5px;  */
    display: grid;
    grid-template-rows: repeat(7, auto);
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    /*align-items: center;*/
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    max-width: 100%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    flex-shrink: 0;
    flex-grow: 1;
}

    .bp-card p {
        margin: 5px 0;
    }

.bp-amount-billed {
    grid-column: 1 / 3;
    justify-self: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.bp-location {
    grid-column: 1 / 3;
    justify-self: center;
}

.bp-development-components {
    grid-column: 1 / 3;
    justify-self: center;
    border-bottom: 1pX solid gray;
}

hr {
    grid-column: 1 / 3;
    margin: 0;
    padding: 0;
}

.loading-table {
    display: none;
    justify-content: center;
    padding: 20px;
}

    .loading-table.show {
        display: flex;
    }

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-message {
    color: red;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    position: relative;
    bottom: 0;
}

    .footer p {
        margin: 0;
    }

    .footer a {
        color: #666;
        text-decoration: none;
        margin: 0 10px;
    }
