* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Arial', Arial, sans-serif;
    background-size: cover;
    background-color: #13161b;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: visible;
    position: relative;
}

.interface {
    top: 0;
    left: 0;
    width: 100vw;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

nav {
    color: #fff;
    padding: 10px;
}

nav a {
    color: #fff;
    margin-right: 10px;
}

nav a:hover {
    color: #ddd;
}

#content {
    width: 100%;
    height: 90vh;
    border: none;
    z-index: 2;
    overflow: hidden;
}

#find-content {
    width: 100%; 
    height: 100%; 
    display: none;
    border: none;
}

#library-content {
    width: 100%; 
    height: 100%; 
    display: block;
    border: none;
}

#preset-content {
    width: 100%; 
    height: 100%; 
    display: block;
    border: none;
}

.svg-interface {
    width: 100%;
    height: auto;
    pointer-events: all;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 1));
}

#profile-img {
    cursor: pointer;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0));
    transition: all 0.3s ease;
}

#profile-img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

#logout-btn {
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}

#logout-btn:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

iframe {
    pointer-events: all;
}

.not-supported {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #13161b;
    color: #fff;
    border-radius: 5px;
    z-index: 100;
}

.not-supported p {
    text-align: center;
}

#support-modal {
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

#login-modal {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #13161b;
    color: #fff;
    border-radius: 5px;
    z-index: 100;
}

.continue {
    color: #3498db;
    font-style: underline;
    border: none;
    cursor: pointer;
}

#google-button {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#google-button:hover {
    fill: rgba(255, 255, 255, 0.04);
} 

.click-home {
    cursor: pointer;
    transition: all 0.3s ease;
}