#work-order-close-remind-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;
    pointer-events: none;
}

.work-order-close-remind-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 380px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    padding: 16px 36px 16px 14px;
    display: flex;
    align-items: flex-start;
    pointer-events: auto;
    animation: workOrderRemindSlideIn 0.3s ease;
    transition: bottom 0.25s ease, opacity 0.25s ease;
    box-sizing: border-box;
}

@keyframes workOrderRemindSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.work-order-close-remind-card.removing {
    animation: workOrderRemindSlideOut 0.25s ease forwards;
}

@keyframes workOrderRemindSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

.work-order-close-remind-body {
    flex: 1;
    min-width: 0;
}

.work-order-close-remind-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px;
}

.work-order-close-remind-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    padding-right: 8px;
    flex: 1;
    min-width: 0;
}

.work-order-close-remind-clear-all {
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    color: #3296FA;
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

.work-order-close-remind-clear-all:hover,
.work-order-close-remind-clear-all:focus {
    color: #1677ff;
    text-decoration: underline;
    border: none;
    outline: none;
    box-shadow: none;
}

.work-order-close-remind-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    word-break: break-all;
}

.work-order-close-remind-order-no {
    color: #3296FA;
    text-decoration: none;
    margin: 0 2px;
    cursor: pointer;
}

.work-order-close-remind-order-no:hover {
    text-decoration: underline;
    color: #1677ff;
}

.work-order-close-remind-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    color: #bbb;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.work-order-close-remind-close:hover {
    color: #666;
}
