.account-tabs {
    display: flex;
    flex-direction: column;
}
.custom-quarter-tab {
    width: 24%;
    float: left;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-right:10px;
}
body.dark-mode .custom-quarter-tab{
    background-color: #1e1e1e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.custom-half-tab {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
body.dark-mode .custom-half-tab{
    background-color: #1e1e1e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.tab-link {
    background: #f6f6f6;
    border: none;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom:10px;
    width:100%;
}
body.dark-mode .tab-link {
    background: #333;
    color: #fff;
}
.tab-link:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff);
    color: #fff;
}
.tab-link.active {
    background: linear-gradient(to right, #7f00ff, #00c6ff);
    color: #fff;
}
body.dark-mode .tab-link:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff);
    color: #fff;
}
body.dark-mode .tab-link.active {
    background: linear-gradient(to right, #7f00ff, #00c6ff);
    color: #fff;
}
.tab-content {
    width:100%;
    float:left;
    display: none;
    
}
.tab-content.active-tab {
    display: block;
}