


.account-order {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    min-width: 0;
    padding: 1rem;
}

.account-order-button {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.account-order-button h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #141414;
    margin: 0;
    text-align: start;
    line-height: 2rem;
}

.account-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    gap: 0;
    background-color: white;
    border-radius: 12px;
}

.account-info {
    display: flex;
    background-color: #F4F3FF;
    padding: 1.5rem;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    border-radius: 12px 12px 0 0;
}

.account-info-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    flex: 1;
    gap: 0.4rem;
    min-width: 0;
}

.account-info-details-name {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6rem;
    color: #27115F;
    margin: 0;
    word-wrap: break-word;
}

.account-info-details-number {
    color: #424242;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2rem;
    margin: 0;
    word-wrap: break-word;
}

.account-tile-list {
    display: flex;
    flex-direction: column;
    padding: 0rem 1.5rem;
    background-color: white;
    gap: 0;
    box-sizing: border-box;
    border-radius: 0 0 12px 12px;
}

.account-tile-wrapper {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 0rem;
    gap:1rem;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #F3F4F6;
}

.account-tile-wrapper-last {
    border-bottom: none;
}

.account-tile {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.2s;
}

.account-tile:hover {
    background-color: #FAFAFA;
}


.account-tile-icon {
    padding: 0.6rem;
    background-color: #F4F3FF;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-tile-icon img {
    width: 20px;
    height: 20px;
}

.account-tile-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    gap: 0.2rem;
    min-width: 0;
}

.account-tile-text-title {
    text-align: start;
    font-size: 1rem;
    line-height: 1.2rem;
    color: #141414;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
}

.account-tile-text-subtitle {
    color: #6B7280;
    text-align: start;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
    word-wrap: break-word;
}

.dialog-edit-profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.dialog-edit-profile-header {
    font-weight: 700;
    color: #141414;
    font-size: 1.5rem;
    margin: 0;
}

.dialog-edit-profile-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .account-info {
        width: 100%;
        padding: 0rem;
        gap: 0.8rem;
    }
    
    .account-order{
        padding: 0;
    }

    .account-tile-list{
        padding: 0rem;
    }
    
    .account-tile-wrapper{
        padding: 1.2rem 0rem;
    }

    .account-tile-icon img {
        width: 18px;
        height: 18px;
    }

    .account-tile-text-title{
        font-size: 0.75rem;
        line-height: 1.125rem;
    }

    .account-mobile-logout button {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        border: 1px solid #FEA3B4;
        cursor: pointer;
        background-color: #FFFFFF;
        align-items: center;
        color: #F63D68;
        font-size: 0.9rem;
        line-height: 1.25rem;
        font-weight: 500;
        gap: 1rem;
    }

    .edit-account-btn {
        background-color: transparent;
        cursor: pointer;
        border: 1px solid #D6D6D6;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        padding: 0.4rem;
        transition: all 0.3s ease;
    }

    .account-container{
        height: 75vh;
    }
}