@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

body {
    /* background-color: #4F4DA0; */
    font-family: 'Roboto', sans-serif;
}

.header-container{
    padding-top: 20px;
    padding-bottom: 20px;
        background-color: #4F4DA0;
        color: #FFFFFF;
}

.logo img {
    width: 250px;
}

.btn-primary{
    background-color: #4F4DA0 !important;
    border-color: #4F4DA0 !important;
}

.btn-danger{
    background-color: #a4a4a4 !important;
    border-color: #a4a4a4 !important;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#upload-form {
    padding-top: 150px;
}

#file-status {
    margin-top: 35px;
}

#submitButton {
  margin-top: 25px;
}

.dropzone {
    /* width: 600px;
    height: 400px; */
    border: 2px dashed gray;
    text-align: center;
    padding: 20px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .dropzone p {
    font-weight: bold;
  }
  
  .dropzone.highlight {
    background-color: lightblue;
  }
  
  .dropzone ul {
    list-style: none;
    padding: 0;
  }
  
  .dropzone ul li {
    display: flex;
    align-items: center;
  }
  
  .dropzone ul li .folder-icon {
    margin-right: 10px;
  }

  .alert-danger{
    margin-top: 25px;
  }
  
  .alert-success{
    margin-top: 25px;
  }