.ts-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.ts-modal.show {
    display: flex;
}

.ts-modal__content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.ts-modal__header {
    padding: 1em;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.ts-modal__body {
    padding: 1em;
}

.ts-modal__button {
    border: 1px solid #94bd1f;
    border-radius: 4px;
    padding: 10px;
}
