body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    background: linear-gradient(to bottom, #a8e6cf54, #56ab9245);
    min-height: 100vh;
}

.curve-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 300px;
    z-index: -1;
}

.account-wrapper {
    padding: 20px;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar h2 {
    flex: 1;
    text-align: center;
    margin: 0;
    color: white;
}

.top-bar .back-btn {
    font-size: 20px;
    color: white;
}

.account-info {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.verified {
    color: green;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified i {
    margin-right: 5px;
}

.edit-profile-btn {
    margin: 15px auto;
    display: block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.edit-container {
    display: none;
    margin-top: 20px;
    text-align: left;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group input, .form-group select {
    width: 80%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 25px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #999;
}

.account-options {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    min-height: 60px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin: 0 auto;
}

.option-item:hover {
    background-color: #f4f4f4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.label-wrap {
    display: flex;
    align-items: center;
}

.option-item i {
    font-size: 18px;
}

.label-text {
    margin-left: 10px;
    font-size: 16px;
}

.refer-btn {
    background: #32CD32;
    color: white;
    padding: 5px 20px;
    border-radius: 40px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    width: 70px;
    text-align: center;
    margin-left: auto;
}

.refer-btn:hover {
    background: #28a745;
}

.form-logout .option-item {
    background-color: #f44336;
    color: white;
}

.form-logout .option-item:hover {
    background-color: #d32f2f;
}

/* Hide account options on desktop */
@media (min-width: 768px) {
    .account-options {
        display: none;
    }
}

/* Responsive styling for account options on mobile */
@media (max-width: 767px) {
    .account-options {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .option-item {
        padding: 12px 15px;
        max-width: 100%;
    }

    .refer-btn {
        width: auto;
        font-size: 14px;
        padding: 5px 15px;
        margin-left: 0;
    }

    .option-item i {
        font-size: 20px;
    }

    .label-text {
        font-size: 14px;
    }

    .form-logout .option-item {
        padding: 10px 15px;
    }
}

.message {
    color: green;
    margin-top: 10px;
}

.error {
    color: red;
    margin-top: 10px;
}

a {
    text-decoration: none;  /* Remove underline */
    color: inherit;         /* Inherit the color from the parent element */
}

.option-item {
    text-decoration: none;  /* Ensure option items don't have underlines */
    color: inherit;         /* Inherit color from parent (or set your own color) */
}

/* If you want to set specific color for the links inside .option-item */
.option-item a {
    color: #333;  /* Example color for text inside links, change as needed */
}

/* Add hover effect if needed */
.option-item a:hover {
    color: #007bff;  /* Example hover color */
    text-decoration: none;  /* Ensure underline does not appear on hover */
}
