/* Genel */
.tss-card {
    background:#fff;
    border-radius:8px;
    padding:20px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}

/* Timeline */
.timeline {
    list-style:none;
    padding-left:0;
    position:relative;
}

.timeline li {
    padding:10px 0 10px 25px;
    position:relative;
}

.timeline li::before {
    content:'';
    width:10px;
    height:10px;
    background:#0d6efd;
    border-radius:50%;
    position:absolute;
    left:0;
    top:15px;
}

.timeline li::after {
    content:'';
    position:absolute;
    left:4px;
    top:0;
    width:2px;
    height:100%;
    background:#dee2e6;
}

/* Badge spacing */
.badge {
    font-size:0.85rem;
    padding:6px 10px;
}

/* Frontend */
.tss-result {
    margin-top:20px;
}
/* MODAL OVERLAY */
.tss-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
}

/* MODAL BOX */
.tss-modal-box {
    background: #fff;
    width: 700px;
    max-width: 95%;
    margin: 60px auto;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

/* KAPAT BUTONU */
.tssModalClose {
    margin-top: 15px;
}

