
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 20px;
        background-color: #f4f4f4;
    }
    .container {
        max-width: 950px;
        margin: 0 auto;
        background-color: #fff;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    h1 {
        text-align: center;
        color: #333;
    }

    .form-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1px; 
    }

    .column {
        flex: 1;
        padding: 10px;
        box-sizing: border-box;
    }

    .column-small {
        flex: 0.6;
        padding: 10px;
        box-sizing: border-box;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        display: block;
        font-weight: light;
        margin-bottom: 5px;
        font-size: 12px; /* resized to 1 size */
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
	.dropzone {
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    cursor: pointer;
    }

    .file-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 10px;
        margin-bottom: 5px;
        /* Removed the border here */
    }

    .form-group input {
        height: 30px;
    }

    .form-group textarea {
        resize: vertical;
    }

    .form-group button {
        padding: 15px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .form-group button:hover {
        opacity: 0.8;
    }

    .submit-button {
        background-color: #007bff;
        color: #fff;
		margin-right: 80px;
		border-radius: 4px;
		border: none;
		padding: 5px 10px;
    }

    .clear-button {
        background-color: red;
        color: white;
        margin-right: 80px;
		border-radius: 4px;
		border: none;
    }

    .print-button {
        background-color: green;
        color: white;
		border-radius: 4px;
		border: none;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }

    table, th, td {
        border: 0px solid #ccc;
        text-align: center;
    }

    th, td {
        padding: 1px;
    }

    th {
        background-color: #000080;
        color: #ffffff;
    }

    th:nth-child(2) {
        width: 80%;
    }

    th:nth-child(3) {
        width: 15%;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.1rem;
        background-color: #f8f9fa;
        border-bottom: 1px solid #ccc;
    }

    .column {
        flex: 1;
        text-align: left;
    }

    .left img {
        width: 70%;
        height: auto;
    }

    .middle {
        text-align: center;
    }

    .right {
        text-align: right;
    }

    .submit-container {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #submit-claim {
        font-weight: bold;
        font-size: 20px;
    }


    .dropzone.dragover {
        background-color: #e1f5fe;
    }

    .file-list {
        list-style-type: none;
        padding-left: 0;
    }

    .file-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom: 5px;
    }

    .file-list-item button {
        padding: 5px 10px;
        background-color: red;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    .file-list-item button:hover {
        opacity: 0.8;
    }

    @media print {
        body {
            background-color: #fff;
            padding: 0;
        }
        .container {
            box-shadow: none;
            border-radius: 0;
            padding: 10px;
            font-size: 10px;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 5px;
            font-size: 10px;
        }
        th, td {
            font-size: 10px;
            padding: 3px;
        }
        h1 {
            font-size: 14px;
        }
    }

    .sblue {
        color: blue;
        font-weight: bold;  /* Bold notes */
		font-size: 13px;
    }

    .sred {
        color: red;
        font-weight: light;  /* Bold notes */
		font-size: 13px;
    }
	.sblack {
        color: black;
        font-weight: light;  /* Bold notes */
		font-size: 12px;
    }
    .note {
        font-size: 11px;
        color: red;
        font-weight: bold;  /* Bold notes */
    }
	.centered-link {
        text-align: center;
    }
