.floating-save-btn {
    position: fixed;
    bottom: 130px;
    right: 20px;
    z-index: 9999;
    background-color: #8b6214; /* Green for Save */
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.floating-save-btn:hover {
    background-color: #ad8336;
    color: white;
    text-decoration: none;
}

.floating-exit-btn {
    position: fixed;
    bottom: 130px;
    right: 100px;
    z-index: 9999;
    background-color: #aa0e0e;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.floating-exit-btn:hover {
    background-color: #da0b0b;
    color: white;
    text-decoration: none;
}
.save-notification {
    position: fixed; /* Or absolute inside a container */
    margin: auto;
    z-index: 9999;
    width: 100%;
    text-align: center;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 10px 15px;

    opacity: 0;
    pointer-events: none; /* So it doesn't block clicks */
    transition: opacity 0.5s ease-in-out;
}
.save-notification.show {
    opacity: 1;
    pointer-events: auto;
}
.edit-hover-highlight {
    border: 2px solid #4169E1;
    transition: border 0.2s ease;
}
.browse-image-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    background: #6495ED;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer !important;
    font-size: 14px;
    font-weight: 700;
    display: block;
}
.image-container {
    position: relative;
}
.section-hidden {
    opacity: 0.5;
    pointer-events: none;
}
.section-hidden .open-eye-icon {
    pointer-events: auto;
    opacity: 1 !important;
    display: block !important;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}
.section-hidden .blind-eye-icon {
    display: none !important;
}
.settings-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.add-widgets-icon {
    position: absolute;
    top: 10px;
    right: 40px;
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.delete-icon {
    position: absolute;
    top: 10px;
    right: 70px; /* Adjusted to not overlap with the other icons */
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.down-arrow-icon {
    position: absolute;
    top: 10px;
    right: 100px;
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.up-arrow-icon{
    position: absolute;
    top: 10px;
    right: 130px;
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.duplicate-icon {
    position: absolute;
    top: 10px;
    right: 160px;
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.open-eye-icon {
    position: absolute;
    top: 10px;
    right: 190px;
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.blind-eye-icon {
    position: absolute;
    top: 10px;
    right: 190px;
    z-index: 10;
    cursor: pointer;
    display: none;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.actions_wrapper {
    outline: none !important;
    box-shadow: none !important;
    user-select: none;
}
#section-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
#popUpModal.show {
  display: flex !important;
  justify-content: center;
  align-items: center;
}