.premium-text {
    background-color: #06b26b;
    color: #ffffff; /* Yazıyı beyaz yap */
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50%; /* Daire şekli */
    display: inline-block;
    
}
.premium-text:hover {
    color: #ffffff; /* Kırmızı renk */
    transform: scale(1.1); /* %10 büyüt */
    transition: all 0.3s ease; /* Animasyon efekti için */
}


.standard-text {
    color: silver;
    font-weight: bold;
}

#AnalysisTable th:first-child, #AnalysisTable td:first-child {
    border-left: 2px solid #ccc;
}

#AnalysisTable th:last-child, #AnalysisTable td:last-child {
    border-right: 2px solid #ccc;
}

