body {
    font-family: Arial, sans-serif;
    background-color: #268ab5;;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    max-width: 600px;
}

.logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    height: auto;

}

.img-thumbnail {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.remove-thumbnail {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
}

.toolbar {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    padding: 5px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
}
.toolbar button {
    margin: 0 5px;
}



.btn-primary {
    background-color: #268AB5;
    border-color: #268AB5;
}

/* Change button color on hover */
.btn-primary:hover {
    background-color: #1B6A90;  /* A slightly darker shade */
    border-color: #1B6A90;
}

.btn-secondary {
    background-color: #AED45C;
    border-color: #AED45C;
}

.btn-secondary:hover {
    background-color: #92BA4F;  /* A slightly darker shade */
    border-color: #92BA4F;
}


/* Set the base color for the toolbar buttons */
.toolbar .btn {
    background-color: #268AB5;
    color: #FFF;  /* White text on the blue background */
    border: none;
    width: 49%; /* Making each button take up half the width */
}

/* Color for button on hover */
.toolbar .btn:hover {
    background-color: #1B6A90;  /* A slightly darker shade of blue */
}

/* If you want to set a special color for a specific button, you can add an additional ID or class and set the color for that class/ID. For example: */
.toolbar .btn.special {
    background-color: #AED45C;
}

.active-tool {
    background-color: #175a77;
    color: white;
}
/* Make the modal full width on small screens */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 100%;
        margin: 1rem;
    }
}

#lottie-animation {
    transition: opacity 0.5s;
}