body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: wheat;
    margin: 0;
    padding: 20px;
}
.container {
    max-width: 400px;
    margin: 0 auto;
}
.section {
    margin-bottom: 20px;
}
.section-title {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    margin-left: 15px;
}
.section-content {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.account-info {
    display: flex;
    align-items: center;
    padding: 15px;
}
.account-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.account-name {
    font-weight: bold;
}
.account-email {
    color: #888;
}
.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.setting-item:last-child {
    border-bottom: none;
}
.setting-label {
    font-weight: 400;
}
.setting-value {
    color: #888;
}
.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
}
.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e9e9ea;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
input:checked + .slider {
    background-color: #34c759;
}
input:checked + .slider:before {
    transform: translateX(20px);
}
.logout {
    color: #dc3545;
    text-align: center;
    font-weight: 500;
    padding: 15px 0;
    background-color: white;
    border-radius: 15px;
    margin-top: 20px;
}
.version {
    text-align: center;
    color: #888;
    font-size: 12px;
    margin-top: 20px;
}
.chevron {
    color: #c7c7cc;
}
 /* Button Click Effect */
 button:active {
    transform: scale(0.95);
    background-color: #2a7a99; /* Darker shade for visual feedback */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
 /* iOS-style button */
 .ios-button {
    background-color: transparent;
    color: #007AFF;
    border: none;
    font-size: 17px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/* iOS-style icon */
.ios-icon {
    background-color: #FF9500;
    border-radius: 7px;
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
}

 /* iOS-style button */
 .ios-button {
    padding: 10px 16px;
    background-color: #007AFF; /* iOS blue */
    border: none;
    color: white;
    border-radius: 12px; /* iOS rounded corners */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ios-button:hover {
    background-color: #005bb5; /* Darker shade for hover */
}
 /* iOS-style button contact us */ 
 .ios-button {
    background-color: transparent;
    color: #007AFF;
    border: none;
    font-size: 17px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/* iOS-style icon */
.ios-icon {
    background-color: #FF9500;
    border-radius: 7px;
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Account info styling */
.account-info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}