body {
    background-color: transparent;
    color: #BC5415;
}

.help-block.with-errors {
    color: red;
}

.custom-file-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
}
.custom-file {
    display: flex;
    align-items: center;
}
.input-group-append {
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    #drag-and-drop-area {
        display: none;
    }
}
@media (min-width: 768px) {
    #drag-and-drop-area {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        border: 2px dashed #ccc;
        text-align: center;
        position: relative;
    }
}
#drag-and-drop-area.dragover {
    background-color: #e0f7fa;
}
#drag-and-drop-area.uploaded {
    border-color: green;
    background-color: #e0ffe0;
}
.upload-icon {
    display: none;
    color: green;
    font-size: 24px;
}
#drag-and-drop-area.uploaded .upload-icon {
    display: inline-block;
}
#drag-and-drop-area .file-icon {
    display: none;
}
#drag-and-drop-area.uploaded .file-icon {
    display: inline-block;
    color: green;
    font-size: 24px;
}
.custom-file-label::after {
    content: "Dodaj"; /* Change "Browse" to "Dodaj" */
}
.loading-spinner {
    display: none;
    margin-left: 10px;
}
.btn-loading .loading-spinner {
    display: inline-block;
}

/* Bijeli gumb, zaobljeni rubovi, tamnozeleni tekst */
.btn-send {
  background-color: #fff !important;
  color: #BC5415 !important;
  border: 2px solid #BC5415 !important;
  border-radius: 0.25em;
  padding: .75rem 1.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out; /* glatki prijelaz */
}

/* Hover/focus states – brončana pozadina, bijeli tekst */
.btn-send:hover,
.btn-send:focus {
  background-color: #BC5415 !important;
  color: #fff !important;
  border-color: #BC5415 !important;
  box-shadow: none !important;
}

/* Disabled */
.btn-send[disabled] {
  opacity: .7;
  cursor: not-allowed;
}

/* Honeypot - skriveno vizualno, ali ne display:none */
.hp-wrap{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}
