    .file-drop-area {
        position: relative;
        display: flex;
        align-items: center;
        width: 450px;
        padding: 25px;
        border: none;
        transition: 0.2s;
        background-color: rgb(211, 208, 208);
    }

    .choose-file-button {
        flex-shrink: 0;
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(78, 78, 78, 0.4);
        border-radius: 3px;
        padding: 8px 15px;
        margin-right: 10px;
        font-size: 12px;
        text-transform: uppercase;
    }

    .file-message {
        font-size: small;
        font-weight: 300;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .file-input {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        cursor: pointer;
        opacity: 0;
    }

    .mt-100 {
        margin-top: 100px;
    }

    .bg-databenki-theme {
        background-color: rgb(0, 26, 87);
    }

    .bg-light-databenki-theme {
        background-color: rgb(0, 26, 87, 0.3);
    }
    .text-databenki-theme {
        color: #001a57;
    }

    .card-info.card-outline {
        border-top: 3px solid rgb(4, 49, 156);
    }

    .btn-primary {
        color: #fff;
        background-color: #001a57;
        border-color: #001a57;
        box-shadow: none;
    }

    .toast {
        opacity: 1 !important;
      }
      
      #toast-container > .toast {
        opacity: 1 !important;
      }

      .btn-round {
        width: 40px; /* Set width and height to the same value for a perfect circle */
        height: 40px;
        border-radius: 50%; /* Makes the button round */
        padding: 0; /* Remove default padding */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Optional: Add hover effect */
    .btn-round:hover {
        opacity: 0.8;
    }




