body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


/* Top Bar Style */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0040c3;
    padding: 10px;
    color: white;
}

.exit-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.exit-button:hover {
    background-color: darkred;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.logo {
    height: 40px; /* Adjust size as needed */
}


.container {
    display: flex;
    height: 100vh;
}

.container{
    width: 100%!important;
}

.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.left-section img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

.right-section {
    flex: 1;
    padding: 20px;
    background-color: #fff;
}

.right-section h2 {
    margin-bottom: 10px;
}

.right-section p {
    margin-bottom: 20px;
    color: #555;
}

.options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.box {
    position: relative;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.box:hover {
    border-color: #007bff;
}

.box img {
    /* max-width: 80px; */
    margin-bottom: 10px;
}

/* .box .info {
    display: none;
    color: #555;
} */

/* .box:hover .info {
    display: block;
} */

.box.selected {
    border-color: #007bff;
    background-color: #f0f8ff;
}

.selected-image-container {
    text-align: center;
    margin-bottom: 20px;
    border: 1px dashed #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.selected-image-container img {
    /* max-width: 150px; */
    margin: 10px 0;
}

button {
    font-size: 18px;
    padding: 13px 29px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    font-size: 18px;
    padding: 13px 29px;
}






/*  */


.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    background-color: #ddd;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.quantity-control button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-control input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}



/*  */

.fusion-tb-header {
    display: none;
}

main#main {
    padding: 0;
}