body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-color: #444;
    color: #fff;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 15px;
    color: #777;
}

.button {
    background-color: rgb(238, 99, 164);
    color: white;
    padding: 10px 20px;
    text-align: center;
    align-items: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    border: none;
}

.button:hover {
    background-color: rgb(179, 73, 122);
}

.button:disabled {
    background-color: #aaa;
}

.forward-button {
    font-size: 14px;
    font-weight: bold;
    margin: 4px 2px;
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    color: #444;
    background-color: #FFD700;
}

.back-button {
    font-size: 14px;
    font-weight: bold;
    margin: 4px 2px;
    position: absolute;
    top: 20px;
    left: 70px;
    width: auto;
    color: #444;
    background-color: #FFD700;
}

.save-workspace-button{
    font-size: 14px;
    font-weight: bold;
    margin: 4px 2px;
    position: absolute;
    top: 20px;
    right: 190px;
    width: auto;
    color: #444;
    background-color: #FFD700;
}

.forward-button:hover,
.back-button:hover,
.save-workspace-button:hover {
    background-color: #ceaf00;
}

.user-dropdown-container {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-block;
}

.user-button {
    margin: 5px 2px;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.user-button:hover {
    /* background-color: #555; */
    background-color: #ceaf00;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    background-color: #ddd;
    min-width: 160px;
    z-index: 100;
    left: 0;
    top: 44px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.user-dropdown-content a {
    color: #444;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 5px;
}

.user-dropdown-content a:hover {
    color: #FFF;
    background-color: rgb(238, 99, 164)
}

.user-dropdown-content span {
    background-color: #aaa;
    height: 1px;
    margin: 0 4px;
    width: calc(100% - 8px);
    display: block;
}

.user-dropdown-container:hover .user-dropdown-content {
    display: block;
}

.tab-button {
    font-size: 12px;
    height: 32px;
    border-radius: 0 0 5px 5px;
    width: auto;
    background-color: #333;
}

.tab-button:hover {
    background-color: rgb(179, 73, 122);
}

.tab-button.selected {
    background-color: rgb(238, 99, 164);
}

.tab-line {
    position: relative;
    height: 2px;
    width: 100%;
    border: none;
    background-color: rgb(238, 99, 164);
}

.tab-stripes {
    position: relative;
    border: none;
}

.zoom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.zoom-popup img {
    max-width: 90%;
    max-height: 90%;
}

.zoom-popup .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgb(238, 99, 164);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    width: 100px;
    height: 40px;
}

.overlay-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.alert-popup,
.confirm-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    max-width: 500px;
    text-align: center;
}

.alert-popup .content,
.confirm-popup .content {
    margin-bottom: 10px;
    font-size: 18px;
    margin: 15px 20px;
}

.alert-popup .close-button,
.confirm-popup .confirm-button {
    background-color: rgb(238, 99, 164);
    color: white;
    padding: 10px 15px;
    margin: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.alert-popup .close-button:hover,
.confirm-popup .confirm-button:hover {
    background-color: rgb(179, 73, 122);
}

.confirm-popup .cancel-button {
    background-color: #aaa;
    color: white;
    padding: 10px 15px;
    margin: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.confirm-popup .cancel-button:hover {
    background-color: #bbb;
}

.purchase-options-popup {
    position: fixed;
    top: 100px;
    left: 100px;
    width: calc(100% - 240px);
    height: auto;
    /* max-height: calc(100% - 240px); */
    /* min-height: calc(100% - 240px); */
    background-color: #eee;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    text-align: center;
}

.purchase-options-popup h2{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 15px;
    color: #333;
}

.purchase-options-popup .content {
    margin-bottom: 10px;
    font-size: 18px;
    margin: 15px 20px;
}

.purchase-options-popup .add-to-cart-button,
.purchase-options-popup .cancel-button {
    background-color: rgb(238, 99, 164);
    color: white;
    padding: 10px 15px;
    margin: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.purchase-options-popup .add-to-cart-button:hover,
.purchase-options-popup .cancel-button:hover {
    background-color: rgb(179, 73, 122);
}

