.douban-preview-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.douban-preview-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.15);
}

.douban-cover {
    width: 80px;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.douban-info {
    flex: 1;
    min-width: 0;
}

.douban-title {
    font-weight: bold;
    font-size: 15px;
    margin: 0 0 4px 0;
    color: #333;
}

.douban-meta {
    color: #666;
    font-size: 13px;
    margin: 0 0 4px 0;
}

.douban-rating {
    color: #e09015;
    font-size: 13px;
    margin: 0 0 6px 0;
}

.douban-score {
    font-weight: bold;
}

.douban-count {
    color: #999;
    font-size: 12px;
}

.douban-summary {
    color: #999;
    font-size: 12px;
    margin: 0;
    max-height: 40px;
    overflow: hidden;
    line-height: 1.4;
}

.douban-insert-btn {
    font-size: 13px;
}

@media (max-width: 768px) {
    .douban-preview-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .douban-cover {
        width: 100px;
        height: 140px;
    }

    .douban-card .douban-card-inner > div:first-child {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .douban-card .douban-card-inner h2 {
        font-size: 17px !important;
    }

    .douban-card .douban-card-inner img {
        width: 90px !important;
        height: 126px !important;
    }

    .douban-card .douban-card-inner > div:first-child > div:last-child {
        padding-right: 0 !important;
        align-items: center !important;
    }
}

@media (prefers-color-scheme: dark) {
    .douban-preview-card {
        border-color: #444;
        background-color: #2a2a2a;
    }

    .douban-preview-card:hover {
        border-color: #0d6efd;
    }

    .douban-title {
        color: #e0e0e0;
    }

    .douban-meta {
        color: #aaa;
    }

    .douban-summary {
        color: #888;
    }
}
