﻿body {
    background-color: #f8f9fa;
    color: #333;
}

.banktable-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px; /* Reduce the width */
    margin: 0 auto; /* Center align */
    width: 100%; /* Ensure responsiveness */
    overflow: auto;
}

.production-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px; /* Reduce the width */
    margin: 0 auto; /* Center align */
    width: 100%; /* Ensure responsiveness */
}

.report-text {
    color: #009990;
    font-size: 28px;
    margin-bottom: 30px;
}

.table {
    width: 100%;
    min-width:700px;
    border-collapse: collapse;
}

    .table th {
        background-color: #5F6F65;
        color: antiquewhite;
        letter-spacing: 1px;
        font-size: 1.2rem;
        font-weight: 500;
    }

    .table th, .table td {
        padding: 10px;
        text-align: left;
        border: 1px solid #ddd;
        font-size: 16px;
    }

    .table tr:hover {
        background-color: #f1f1f1;
    }



.table-secondary .section-text {
    text-align: left;
    font-size: 1rem;
    letter-spacing: 1px;
}

.table-secondary {
    background-color: #f0f0f0;
    font-weight: bold;
}

.table-form-control {
    border: none; /* Remove border */
    background-color: transparent; /* Make background transparent */
    padding: 8px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    display: inline-block;
}

    .table-form-control:focus {
        outline: none;
         /* Remove focus outline */
        background-color: transparent; /* Keep background transparent */
    }

    .table-form-control::-webkit-outer-spin-button,
    .form-control::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.form-control[type="number"] {
    -moz-appearance: textfield;
}

button.btn {
    background-color: #28a745;
    border: none;
    padding: 12px 30px;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    button.btn:hover {
        background-color: #218838;
    }
