/*       custom uploads     */
.wc-custom-upload-instructions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	margin-bottom: -5px;
}

.wc-custom-upload-instructions-line1{
	 font-size: 17px;
  color: #333;
}
.wc-custom-upload-instructions-line2 {
 	 font-size: 13px;
}
.wc-custom-upload-instructions-line2 {
  margin-top: -20px;      /* pequeno espaçamento entre linhas */
}

/* WRAPPER */
.wc-custom-upload-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
}

/* BOTÃO */
.wc-custom-upload-button {
  position: relative;
  display: inline-block;
  color: #0274BE;
  border: 1px solid #0274BE;
  padding: 6px 15px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
  overflow: hidden;
}

.wc-custom-upload-button:hover {
  background: #0274BE;
  color: #fff;
}
#custom_file {
    display: none;
}

/* INPUT FILE INVISÍVEL MAS FUNCIONAL */
.wc-custom-upload-button input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* NOME DO FICHEIRO */
.wc-custom-selected-filename {
  margin-top: 8px;
  font-size: 14px;
  color: #444;
  min-height: 18px; /* evita "sumir" quando vazio */
}

/* Overlay para bloqueio de não-logados */
.wc-custom-upload-overlay {
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index:10;
  cursor:pointer;
}

/* Popup de login */
.wc-custom-login-popup {
  display:none;
  position:fixed;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,0,0,0.3);
  z-index:10000;
}

.wc-custom-login-link {
  display:inline-block;
  margin-top:10px;
  padding:10px 20px;
  background:#0073aa;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
}

/* Fundo escuro */
.wc-custom-login-bg {
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.5);
  z-index:9999;
}

.variation-Ficheiropersonalizado {
  font-size: 0.85em;
  color: #555;
  margin-top: 2px;
  margin-bottom: 2px;
  display: block;
  line-height: 1.2;
  word-break: break-word;
  opacity: 0.85;
}

/*     custom uploads      */