/* This file is reserved for overriding and extending the template styles. */
.card-body>.card-tools {
    float: right;
    margin-right: -0.625rem;
    margin-top: -0.625rem;
}
.drop-container {
    border: 1px solid var(--separator) !important;
    border-radius: var(--border-radius-md) !important;
    height: 6rem;
    text-align: center;
    background: var(--foreground) !important;
    cursor: pointer;
    position: relative;
  }
  
  .drop-container p {
    margin: 0;
    font-size: 18px;
  }
  
  .file-label {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem 10px;
    color: var(--body);
    /* background-color: var(--primary); */
    text-align: center;
    cursor: pointer;
  }
  
  .file-label:hover {
    color: var(--primary);
  }
  
  input[class="file-template"] {
    display: none;
  }
  
  .upload-status {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
  }
  .file-info{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.5rem 10px;
    width: 100% !important;
    height: 100% !important;
    justify-content: center;
    align-items: center;
    animation: fadeInAndOut 2s ease;
  }
  .file-info p {
    font-size: 14px;
    animation: fadeInAndOut 2s ease;
  }
  .upload-status p {
    font-size: 18px;
    color: #007bff;
  }

  .field-icon {
    float: right;
    margin-right: 10px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  
  @keyframes fadeInAndOut {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }