.app-main{
  background: url('../img/hero@75.b2469a49.jpg') no-repeat center top;
  background-size: cover;
}
.bg-rainbow{
  background: url('../img/hero@75.b2469a49.jpg') no-repeat center top;
  background-size: cover;
}
.accordion{
  width: 100%;
}
button[aria-expanded="true"]{
  background-color: #2563eb;
  color: #fff;
}
h2:has(button[aria-expanded="true"]) + div > div{
  background-color: #2563eb !important;
  color: #fff !important;
}
button[aria-expanded="false"]{
  border-radius: 0.75rem;
  color: black !important;
}

.content-container {
  display: flex;
}
.left-content {
  width: calc(100% - 400px);
}
.right-content{
  width: 370px;
}

.right-content {
  padding-left: 30px;
}

.left-content {
  height: 100vh;
  position: relative;
}

.left-content > * {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 800px) {
  .left-content {
    display: none;
  }
  .right-content {
    padding-left: 30px;
  }
}

.header-section {
  text-align: center;
  padding: 1rem 6rem;
}

.dropzone {
  border: 2px dashed #ccc;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.dropzone.dragover {
  border-color: #575656;
  background-color: #f0f0f0;
}

.select2-container--default .select2-selection--single {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    height: 3rem;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 0.375rem;
}

.img-flag {
    max-width: 20px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

.select2-results__option {
    display: flex;
    align-items: center;
}

.select2-search--dropdown .select2-search__field {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2.5rem;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #8b5cf6 !important;
    color: #1a202c;
}

.select2.select2-container.select2-container--default {
  width: 100% !important;
  height: 3rem !important;
}

.select2-selection.select2-selection--single {
  height: 3rem !important;
}

.select2-selection__rendered {
  line-height: 40px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
}

.modal-fade-in {
      animation: fadeIn 0.3s ease-in-out;
  }

.modal-fade-out {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#sentiment-chart {
  position: relative;
}

#file-name-summary {
  word-wrap: break-word;
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 10px;
}

.list-style-sub {
  list-style: disc;
}

.icon-positive {
  position: absolute;
  left: -35px;
  top: 32%;
  transform: translateY(-32%);
}

.icon-neutral {
  position: absolute;
  left: -35px;
  top: 49%;
  transform: translateY(-49%);
}

.icon-negative {
  position: absolute;
  left: -35px;
  top: 65%;
  transform: translateY(-65%);
}

.score-positive {
  position: absolute;
  right: -35px;
  top: 32%;
  transform: translateY(-32%);
}

.score-negative {
  position: absolute;
  right: -40px;
  top: 65%;
  transform: translateY(-65%);
}

.mt-288 {
  margin-top: 288px !important;
}