#status-text {
    margin-right: 10px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/* Style the alert container to position it at the bottom */
#alert-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050; /* Ensure it's above other content */
    width: 100%;
    max-width: 400px; /* Limit width of the alert */
}

/* Style the button like a Bootstrap success button */
.alert .btn-success {
    background-color: #28a745; /* Bootstrap success green */
    border-color: #28a745;
    color: white;
    padding: 0.375rem 0.75rem; /* Padding like a button */
    border-radius: 0.25rem; /* Button border radius */
    font-weight: 600; /* Make the text bold */
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect for the success button */
.alert .btn-success:hover {
    background-color: #218838; /* Darker green for hover */
    border-color: #1e7e34;
}

/* Close button styling (if you still want a close button) */
.alert .close {
    color: #28a745; /* Success color */
    font-size: 1.5rem;
    opacity: 1;
    cursor: pointer;
}

/* Close button hover effect */
.alert .close:hover {
    color: #155724; /* Darker green for close button hover */
}


.alert.alert-success.alert-dismissible{
    background-color: #5edb5e6e;
    border-radius: 16px;
    width: max-content;
    padding: 2px 100px;
}

.alert.alert-danger.alert-dismissible{
    background-color: #db665e6e;
    border-radius: 16px;
    width: max-content;
    padding: 2px 100px;
}


#selected-files {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

#selected-files p {
    color: red;
}
