/* Order section */
.egrn-order-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.egrn-form-container {
    flex: 1;
    min-width: 300px;
    flex-grow: 1;
}

.egrn-balance-container {
    flex: 0 0 auto;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.egrn-form-container h3,
.egrn-balance-container h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.egrn-form-group {
    margin-bottom: 20px;
}

.egrn-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
}

.egrn-form-group input,
.egrn-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.egrn-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.egrn-submit-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.egrn-submit-btn:hover {
    background-color: #219653;
}

.egrn-balance-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #27ae60;
    text-align: right;
}

/* Responsive design for order section */
@media (max-width: 768px) {
    .egrn-order-section {
        flex-direction: column;
        padding: 20px;
    }

    .egrn-form-container,
    .egrn-balance-container {
        min-width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .egrn-balance-amount {
        text-align: left;
    }
}
