/* Default Tab Star - Global */

/* Dark tema (varsayilan) */
.new-tab .default-tab-star {
    margin-left: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    vertical-align: middle;
}

.new-tab .default-tab-star.fas {
    color: #f59e0b;
}

.new-tab .default-tab-star:hover {
    color: #f59e0b;
    transform: scale(1.3);
}

/* Dark tema - sari alt cizgi */
.new-tab.default-tab-selected {
    border-bottom: 2px solid #f59e0b;
}

/* Light tema - yildiz renkleri ve mavi alt cizgi */
body:not(.is-dark) .new-tab .default-tab-star {
    color: rgba(0, 0, 0, 0.25);
}

body:not(.is-dark) .new-tab .default-tab-star.fas {
    color: #f59e0b;
}

body:not(.is-dark) .new-tab .default-tab-star:hover {
    color: #f59e0b;
}

body:not(.is-dark) .new-tab.default-tab-selected {
    border-bottom: 2px solid #3b82f6;
}
