body {
    background-color: #000;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

#main-content {
    padding: 10rem;
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.tokens-tab-wrapper {
    /* background-color: #0f111d; */
    border-radius: 12px;
    padding-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

.active-tab {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 60px;
    background: #1a2039;
    border-top-left-radius: 16px;
    padding: 10px 20%;
    clip-path: polygon(0% 0%, 90% 0%, 95% 100%, 0% 100%);
    z-index: 2;
}

.tab-title {
    font-weight: bold;
    font-size: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.tab-indicator {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #00e0ff, #7a5cff);
    z-index: 1;
    border-radius: 2px;
}

.tab-edge {
    position: absolute;
    top: 0px;
    right: -40px;
    width: 40px;
    height: 60px;
    background: #fff;
    border-top-right-radius: 24px;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 60%, 0 100%); */

}

.content-card {
    background-color: #1a2039;
    border-radius: 10px;
    padding: 40px 30px;
    color: #aab0c4;
    margin-bottom: 30px;
    margin-top: 0;
}

.history-tab {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.token-lives {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.token-info {
    display: flex;
    align-items: center;
}

.token-logo-title {
    display: flex;
    flex-direction: column;
    margin-right: 50px;
}

.token-icon {
    height: 30px;
}

.token-icon>img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.token-details {
    display: flex;
    flex-direction: column;
}

.token-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #aab0c4;
}

.token-label {
    height: 30px;
    color: #b7d7f1;
    line-height: 1.0;
}

.token-position {
    font-size: 1em;
    margin-top: 4px;
    color: #aab0c4;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 10px;
}

.action-button {
    background-color: #3b82f6;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
}

.history-item {
    background-color: #1a2039;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.action-button:hover {
    background-color: #2563eb;
}

.profit {
    border-left: solid 0.2px #696a6b;
    padding-left: 30px;
}

/* Colors for profit */
.profit-positive {
    font-weight: bold;
    color: #10b981;
    /* green-500 */
}

.number-box {
    padding: 8px 16px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-align: center;
    color: #aab0c4;

    span {
        color: #fff;
    }

}

/* Modal styles */
.liquidity-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background-color: #1a2039;
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.token-pair-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.token-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.token-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.pair-name {
    font-weight: bold;
    font-size: 18px;
}

.pair-value {
    font-weight: bold;
    font-size: 24px;
    color: #00e0ff;
}

.amount-slider-section {
    margin-bottom: 20px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: bold;
}

.slider-wrapper {
    margin-bottom: 10px;
}

.amount-percentage {
    color: #7a5cff;
    font-weight: bold;
}

.amount-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #2a2f4a;
    outline: none;
    appearance: none;
}

.assets-received-section {
    margin-bottom: 30px;
}

.assets-label {
    margin-bottom: 15px;
    font-weight: bold;
    color: #aab0c4;
}

.asset-details {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #0f1426;
    border-radius: 10px;
}

.asset-icon {
    display: flex;
    gap: 5px;
}

.asset-icon img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.asset-amounts {
    font-weight: bold;
    color: #ffffff;
}

.asset-amounts span {
    color: #00e0ff;
}

.action-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #7a5cff, #00e0ff);
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.action-button:hover {
    transform: translateY(-2px);
}