

body[data-bs-theme=light] .main-content {
    background-color: transparent;
}

.main-content {
    background-color: rgb(16, 16, 16);
}

#xo-fa-container{
	display: flex;
	flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}




.profit-contianer{
    margin: 20px 0;
}


.trader-card {
    /* height: 312px; */
    width: 47%;
    padding: 2.5rem 2.5rem;
    background: #0f0f0f;
    background: linear-gradient(143deg, rgb(11 11 11) 15%, rgb(23 23 23) 57%, rgb(64 64 64) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    border: 1px solid #424242;
    position: relative;
    overflow: hidden;
}

.svg-line {
    position: absolute;
    top: 0;
    right: 0;

}


.card-name-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-name {
    font-size: 1rem;
    font-weight: 600;
    color: #751BD5;
    width: 50%;
}


.card-value-name {
    color: #8d8d8d;
    font-weight: 600;
    font-size: 0.9rem;
}



.card-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    padding-left: 0.2rem;
}

.card-main-value {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-align: left;
}



.card-logo img {
    height: 2.2rem;
}

.card-footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.card-btn {
    padding: 0.8rem 1.5rem;
    background-color: #751BD5;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
}


body[data-bs-theme=light] .trader-card {
  background: #ffffff;
  background: linear-gradient(143deg, rgb(245, 245, 245) 15%, rgb(235, 235, 235) 57%, rgb(225, 225, 225) 100%);
  border: 1px solid #e0e0e0;
}

body[data-bs-theme=light] .card-name {
  color: #751BD5;
}

body[data-bs-theme=light] .card-value-name {
  color: #6e6e6e;
}

body[data-bs-theme=light] .card-value {
  color: #333333;
}

body[data-bs-theme=light] .card-main-value {
  color: #333333;
}

body[data-bs-theme=light] .card-btn {
  background-color: #751BD5;
  color: white;
}

body[data-bs-theme=light] .svg-line {
  opacity: 0.3;
}





@media (max-width: 1300px) {

    .all-traders-card-containers {
        gap: 15px;
    }

}



@media (orientation: portrait){
    .trader-card {
        width: 100%;
    }
}