body {
    font-family: Arial, sans-serif;
    background-color: #F9FAFB;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 16px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.back-button, .submit-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
}

.title {
    font-size: 24px;
    font-weight: bold;
}

.scheme-section {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.scheme-icon {
    width: 48px;
    height: 48px;
    background-color: #E0F7FA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}

.icon {
    font-size: 24px;
    color: #00796B;
}

.scheme-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.scheme-info h2 {
    font-size: 18px;
    margin: 0;
}

.dropdown-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
}

.claim-form {
    background-color: #FFFFFF;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.claim-form label {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
    display: block;
}

.claim-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #F9FAFB;
    font-size: 16px;
    color: #333;
}

.date-section, .amount-section {
    display: flex;
    justify-content: space-between;
}

.date-field, .amount-field {
    width: 48%;
}

.green-text {
    color: #4CAF50;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FFFFFF;
    padding: 8px 0;
    border-top: 1px solid #E0E0E0;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.nav-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
}
