.document-preview {
    background: rgba(155, 109, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(155, 109, 255, 0.2);
}

.document-preview .image-item {
    margin: 1rem 0;
    background: rgba(155, 109, 255, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
    border: 1px solid rgba(155, 109, 255, 0.2);
}

.document-preview .image-item img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
    cursor: zoom-in;
}

.document-preview .image-item p {
    text-align: center;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.document-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #9b6dff, #ff69b4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.document-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 109, 255, 0.3);
}

