.trm-notice {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeeba;
}
.trm-notice-icon {
    font-size: 24px;
    margin-right: 15px;
}
.trm-notice-text h3 {
    margin: 0 0 5px 0;
    color: #856404;
}
.trm-notice-text p {
    margin: 0;
    color: #856404;
}
.ls-subscription-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin: 20px 0;
}
.ls-progress {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
}
.ls-progress-bar {
    height: 100%;
    background: #0073aa;
    border-radius: 4px;
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
}
.ls-progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
.loading-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 1000;
}
.loading-overlay span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-weight: bold;
}
.error-notice {
    color: #ff1744;
    padding: 10px;
    background: #ffebee;
    border-radius: 4px;
    margin-bottom: 10px;
}
.latepoint-tab-content {
    max-width: 100%;
    overflow-x: hidden;
}
.subscription-data {
    margin: 20px 0;
    max-width: 100%;
    overflow-x: hidden;
}
.subscription-data > div {
    max-width: 100%;
    overflow-wrap: break-word;
    box-sizing: border-box;
}
@media (max-width: 640px) {
    .subscription-data > div:first-child {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
@media (max-width: 782px) {
    .ls-dates {
        grid-template-columns: 1fr;
    }
}
.refresh-subscription {
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}
.refresh-subscription:hover {
    background: #005d8f;
}