/* =========================================
   CARD
========================================= */

.jh-jpgpdf-card {
    background: white;
    border: 1px solid #d9e2ec;
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 30px;
}

/* =========================================
   UPLOAD
========================================= */

.jh-upload-area {
    border: 2px dashed #cbd5e0;
    border-radius: 18px;
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 30px;
}

    .jh-upload-area:hover {
        border-color: #4da3ff;
        background: #f8fbff;
    }

.jh-upload-content h2 {
    margin-bottom: 12px;
    color: #2d3748;
}

.jh-upload-content p {
    color: #718096;
    margin-bottom: 20px;
}

/* =========================================
   BUTTON
========================================= */

.jh-primary-button {
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background-color: #4da3ff;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .jh-primary-button:hover {
        background-color: #2388f5;
    }

/* =========================================
   PREVIEW
========================================= */

.jh-image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

    .jh-image-preview img {
        width: 100%;
        border-radius: 14px;
        border: 1px solid #d9e2ec;
    }

/* =========================================
   ACTION
========================================= */

.jh-action-area {
    display: flex;
    justify-content: center;
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 768px) {

    .jh-upload-area {
        padding: 40px 20px;
    }
}
