.show-div{
     background: white;
    max-width: 900px;
    margin: auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

  .form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .form-group {
    flex: 1;
    min-width: 150px;
    margin-bottom: 15px;
  }
  
  .form-group label {
    color: #000;
    font-weight: 600;
}

  .preview-container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .preview-box {
    position: relative;
    padding-top: 125%;
  }

  .preview-box canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
  }

  #errorMsg {
    color: #ff0000;
    font-weight: bold;
    margin-top: 10px;
  }

  #phase2,
  #phase3 {
    display: none;
  }
  
  
.file-input {
    color: #0e65bf !important;
    cursor: pointer;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
    font-family: system-ui;
    font-size: 24px;
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 2px dashed;
    margin: auto;
}
div#phase1 {
    display: block;
    width: 100%;
    max-width: 550px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 0 15px 0px #0002;
    border-radius: 10px;
    margin: 10px auto 30px;
}

input#pdfInput {
    display: none !important;
}
.form-group.file-input-wrapper {
    margin-bottom: 0;
}

@media(max-width:379px){
.form-row{
    gap:0 !important;
}

}

@media(max-width:450px){
.show-div {
    padding: 15px !important;
}
}


/*  -----    */


.file-input.drop-zone {
    display: flex;
    flex-direction:column;
    padding: 40px;
    border: 2px dashed #0e65bf;
    border-radius: 10px;
    text-align: center;
    color: #0e65bf;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    position: relative;
}

.file-input.drop-zone.drag-over {
    background-color: #eef;
    border-color: #007bff;
    color: #0e65bf;
}

.drag-drop-hint {
    font-size: 16px;
    color: #0e65bf;
    margin-top: 8px;
    display: inline-block;
}

label.file-input.drop-zone strong {
    font-weight: 700;
}
.single-post #content  div#phase3 a {
    color: #fff !important;
}