#searchInput {
    margin-bottom: 0;
}

.banner-complaints {
    background: linear-gradient(to right, rgba(0, 51, 102, 0.7), rgba(0, 119, 182, 0.9)), 
                url('../assets/complaintsbanner.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Adds shadow to the banner */
    
    padding-top: 50px;
    padding-bottom: 50px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Transmittal section styling */
.transmittal-section {
    margin-top: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.transmittal-section h2 {
    margin-top: 0;
    color: #344767;
    font-size: 28px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px;
}

.transmittal-subtitle {
    text-align: center;
    color: #667085;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Animation for smooth toggle */
#transmittalSection {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease, margin 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

#transmittalSection.visible {
    max-height: 600px; /* Adjust based on your content */
    opacity: 1;
    margin-top: 30px;
}

/* Date input styling to match design */
input[type="date"] {
    position: relative;
    padding-right: 40px; /* Space for calendar icon */
    margin-bottom: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Base styles */
body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
/* Content container styles */
.content-container {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
    padding: 0 20px;
}
/* Left container */
.left-container {
    width: 48%;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Right container */
.right-container {
    width: 48%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #374957;
}
h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #374957;
}
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* Instructions list */
.instructions-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.instructions-list li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
}
/* Progress indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: lightgray;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}
.step.active .circle {
    background: #0077B6;
}
.step span {
    margin-top: 5px;
    font-size: 14px;
}
.line {
    flex: 1;
    height: 4px;
    background: lightgray;
    margin: 0 5px;
}
/* Form layout with labels above fields */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Standard form group with label above field */
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
}

/* Side-by-side fields for date and time */
.occurrence-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.occurrence-fields {
    flex: 1;
    margin-bottom: 20px;
}


/* Label styling */
.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #344767;
}

/* Input styling */
.form-control {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #f5f5f5;
    font-size: 16px;
    color: #333;
    width: 100%;
}
/* Section headers */
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #344767;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.section-subtitle {
    color: #667085;
    font-size: 1rem;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}
label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #374957;
}
input, select, textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
    min-height: 100px;
}
.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 30px;
}
.form-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.btn {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
textarea.form-control {
    font-family: Arial, sans-serif; /* Match this to your body font */
    font-size: 16px;
    color: #333;
    min-height: 100px;
    resize: vertical;
}

/* For placeholder text styling */
textarea::placeholder {
    font-family: Arial, sans-serif;
    color: #6c757d;
    font-style: italic;
}
/* Button container */
.button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    width: 100%;
}
.btn-next {
    background-color: #0077B6;
    color: white;
}
.btn-next:hover {
    background-color: #0089d3;
}
.example-container {
    background-color: #f5f5f5;
    border-left: 4px solid #0077B6;
    padding: 15px;
    margin-bottom: 20px;
}
/* Checkbox alignment */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.success-message {
    text-align: center;
    font-family: Arial, sans-serif;
}

.success-icon {
    width: 125px;
    height: 125px;
    margin-bottom: 15px;
}

.title {
    color: #374957;
    font-size: 35px;
    margin: 0;
}

.reference-section {
    margin: 15px 0;
    text-align: left;
}

.reference-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.reference-box input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
}

#refNumber {
    margin-bottom: 0;
}

.copy-btn {
    background-color: #0077B6;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.notes {
    text-align: left;
    margin-top: 15px;
}

.notes-box {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background: #f9f9f9;
}

.notes-box ul {
    padding-left: 20px;
}

.notes-box li {
    font-size: 14px;
    margin: 5px 0;
}
/* Responsive adjustments */
@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
    }
    .left-container, .right-container {
        width: 100%;
    }
}