body {
    font-family: sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: serif;
    color: gold;
    font-size: 24px;
    flex-grow: 1;
    text-align: center;
}

.saved-designs {
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #e0e0e0;
    color: black;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

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

main {
    display: flex;
    flex-grow: 1;
    padding: 20px;
    background-color: lightgrey;
}

.preview-window {
    width: 100px;
    height: 100px;
    border: 1px solid black;
    background-color: #fff;
    margin-right: 20px;
}

.canvas-container {
    width: 100%;
    height: 400px;
    position: relative;
}

#ringCanvas {
    width: 100%;
    height: 100%;
    background-color: grey;
    opacity: 0.5;
}
.side-window {
    display: none;
    width: 100%;
    background-color: #e0e0e0;
    padding: 10px;
}

.side-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e0e0e0;
    padding: 10px;
    width: 50px;
    height: fit-content;
}

.menu-icon {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ccc;
    width: 100%;
    text-align: center;
}

footer {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
}

.footer-buttons {
    display: flex;
    justify-content: space-around;
}

.footer-icon {
    cursor: pointer;
}
