/* Photo & Signature Upload Container */
.upload-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

/* Common box style */
.upload-box {
    width: 3.5cm;
    height: 4.5cm;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    margin-bottom: 10px; /* Space between box and button */
}
/* Signature box can be different ratio */
.signature-box {
    width: 6cm;
    height: 2cm;
}

.upload-box img {
    max-width: 100%;
    max-height: 100%;
}

.placeholder-text {
    position: absolute;
    color: #888;
    font-size: 14px;
    text-align: center;
    padding: 5px;
}

input[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

input[type="file"]+label {
    display: inline-block;
    padding: 12px 12px;
    background: #4285f4;
    color: white;
    border-radius: 0px;
    cursor: pointer;
    font-size: 14px;
}

input[type="file"]:focus+label,
input[type="file"]+label:hover {
    background: #3367d6;
}

.file-label.has-file::after {
    content: " ✅";
    margin-left: .35rem; 
}