﻿.upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

form {
    min-width: 250px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .custom-dropdown::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid currentColor;
        pointer-events: none;
    }

.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: 1px solid #ccc;
    padding-right: 50px; /* Adjust according to the size of the arrow */
}


.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
}

.form-group input[type="radio"] {
    margin-right: 0.5rem;
}

button {
    padding: 0.5rem 1rem;
    background-color: #7D83FF;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

    button .btn-upload:hover {
        background-color: #93CEC4;
    }

.done-text {
    text-align: center;
    width: 100%;
    display: block;
}


.dino-gif {
    width: 80%;
    margin-left: 10%;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        display: block;
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    100% {
        display: none;
        opacity: 0;
    }
}

.fade {
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}

    .fade.show {
        animation-name: fadeIn;
        display: block;
    }

    .fade.hide {
        animation-name: fadeOut;
        display: none;
    }



@media (max-width: 600px) {
    .upload-container {
        padding: 1rem;
    }
}
