.prediction-w {
    width: 100%;
}
.prediction-summary {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.prediction-summary-left {
    flex: 1;
    width: 100%;
    padding-top: 10px;
}
.prediction-summary-right {
    flex: 1;
    width: 100%;
}

.forecast-table {
    width: 100%;
}

.forecast-table thead {
    background-color: var(--column-header-bg-color);
    height: 35px;
    font-size: 14pt;
}
.forecast-table tr {
    height: 65px;
    font-size: 12pt;
    color: var(--primary-color);
}

.forecast-table .tag-holder {
    margin-top: 0px !important;
}
.light-theme {
    .forecast-table tr:not(:last-child) {
        border-bottom: 0.03em solid var(--border-color);
    }
}

.forecast-broker-logo img {
    width: 60px;
    max-height: 30px;
}

.forecast-bg-1 {
    background-color: var(--cell-bg-1);
}

.forecast-bg-2 {
    background-color: var(--cell-bg-2);
}


.forecast-advise-holder {
    padding: 5px;
    border-radius: 10px;
}

.forecast-advise-holder {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forecast-advise-text{
    text-align: center;
}

#forecast-table-body tr:hover td{
    background-color: var(--highlight-color) !important;
}


.light-theme .buy .forecast-advise-holder {
    background-color: rgb(237, 249, 241);
}

.dark-theme .buy .forecast-advise-holder {
    background-color: rgb(37, 48, 40);
}

.light-theme .buy .forecast-advise-text {
    color: #4F8F65;
}

.dark-theme .buy .forecast-advise-text {
    color: #1DAB4D;
}

.light-theme .sell .forecast-advise-holder {
    background-color: #FBECEC;
}

.dark-theme .sell .forecast-advise-holder {
    background-color: #3A2C2C;
}

.light-theme .sell .forecast-advise-text {
    color: #9B3434;
}

.dark-theme .sell .forecast-advise-text {
    color: #FF3A30;
}

.light-theme .hold .forecast-advise-holder {
    background-color: rgb(235, 244, 253);
}

.dark-theme .hold .forecast-advise-holder {
    background-color: rgb(29, 43, 54);
}

.light-theme .hold .forecast-advise-text {
    color: #4EACF8;
}

.dark-theme .hold .forecast-advise-text {
    color: #4EACF8;
}

.trf{
    padding-left: 15px;
}

.trl{
    padding-right: 15px;
}


@media screen and (max-width: 768px) {
    .prediction-summary {
        flex-direction: column;
    }
    
}

@media screen and (max-width: 850px) {
    .forecast-s-hide {
       display:none;
    }
    .forecast-table tr {
        font-size: 10pt;
    }
}

@media screen and (min-width: 768px) {
    .prediction-summary-left {
        flex: 1;
        width: 50%;
        min-height: 200px;
    }
    .prediction-summary-right {
        flex: 1;
        width: 50%;
        max-width: 500px;
    }
}
