/* Hemang PDF Converter Styles */
#hpc-converter-wrap {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: sans-serif;
    text-align: center;
}

.hpc-drop-zone {
    border: 2px dashed #cccccc;
    border-radius: 5px;
    padding: 40px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    position: relative;
}

.hpc-drop-zone.hpc-dragover {
    background-color: #e9e9e9;
    border-color: #aaaaaa;
}

.hpc-drop-zone p { margin: 0; pointer-events: none; }

#hpc-file-input {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0; cursor: pointer;
}

/* NEW: Styles for the supported files message */
.hpc-supported-files {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
    text-align: center;
}
.hpc-supported-files span {
    font-weight: bold;
}

/* NEW: Styles for the file list */
#hpc-file-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}
#hpc-file-list li {
    background: #f4f4f4;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border: 1px solid #eee;
}
.hpc-remove-file {
    color: #ff0000;
    font-weight: bold;
    font-family: sans-serif;
    cursor: pointer;
    padding: 0 5px;
    border-radius: 50%;
    line-height: 1;
}
.hpc-remove-file:hover {
    background-color: #ffe0e0;
}


.hpc-btn {
    display: inline-block;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: bold;
    padding: 10px 20px;
}
.hpc-btn:hover { opacity: 0.9; }

#hpc-message-area { margin-top: 15px; font-weight: bold; }
#hpc-message-area .hpc-msg-error { color: #dc3545; }
#hpc-message-area .hpc-msg-info { color: #17a2b8; }

.hpc-credit-line { margin-top: 20px; font-size: 12px; color: #777; }
.hpc-credit-line p { font-size: 12px !important; margin: 0; }