.is-invalid {
    color: red;
    font-weight: normal;
}

.cursor-pointer {
    cursor: pointer;
}
.fee-btn {
    background-color: #FF5722; /* Example color for Fee Payment */
    color: #fff;
}

.fee-btn:hover {
    background-color: #E64A19;
}

.chit-btn {
    background-color: #3F51B5; /* Example color for Chit Payment */
    color: #fff;
}

.chit-btn:hover {
    background-color: #303F9F;
}
.mobile-action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    z-index: 1000;
}
.mobile-action-buttons .hero-btn {
    padding: 10px;
    font-size: 14px;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Space the icon a little from the text */
.mobile-action-buttons .hero-btn i {
    margin-right: 5px;
}

/* Hover effect for mobile buttons */
.mobile-action-buttons .hero-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Existing fee and chit button styles, update if needed */
.fee-btn {
    background-color: #FF5722; /* Fee Payment color */
    color: #fff;
}

.fee-btn:hover {
    background-color: #E64A19;
}

.chit-btn {
    background-color: #3F51B5; /* Chit Payment color */
    color: #fff;
}

.chit-btn:hover {
    background-color: #303F9F;
}

/* Optionally, style Dashboard and Login separately */
.dashboard-btn,
.login-btn {
    background-color: #009688; /* Example color */
    color: #fff;
}

.dashboard-btn:hover,
.login-btn:hover {
    background-color: #00796B;
}