body[data-theme="default"] {
    --primary-color: #7700e7;
    --text-color: #fff;
}
body[data-theme="green"] {
    --primary-color: #00e704;
    --text-color: #fff;
}
body[data-theme="orange"] {
    --primary-color: #e75c00;
    --text-color: #fff;
}
body[data-theme="blue"] {
    --primary-color: #003ae7;
    --text-color: #fff;
}
body[data-theme="redPink"] {
    --primary-color: #ff0037;
    --text-color: #fff;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    min-height: 100vh;
}

.content-wrapper {
    position: relative;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    position: relative;
    top: 0;
}

header .logo .icon img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-top: -15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    background-color: #181818;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 30px;
    margin-top: -5px;
}
nav ul li a i.material-icons {
    font-size: 20px;
    margin-right: 5px; 
    color: var(--primary-color);
}
nav ul li a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    padding: 100px 0;
}
main h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #222;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
    width: 400px;
}

.search-bar input[type="text"] {
    border: none;
    background: none;
    outline: none;
    color: #fff;
    flex-grow: 1;
    font-size: 1rem;
    margin-right: 10px;
}

.search-bar button {
    background: none;
    border: none; 
    cursor: pointer;
    margin-right: 5px;
    display: flex; 
    align-items: center; 
}

.search-bar button .material-symbols-outlined {
    font-size: 24px; 
    color: var(--primary-color);
}

footer {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background: transparent;
    color: #999;
    font-size: 0.9rem;
    margin-top: auto;
}

footer .links {
    margin-top: 10px;
}

footer .links a {
    color: #999;
    text-decoration: none;
    margin: 0 5px;
}

footer .links a:hover {
    color: #fff;
}
.theme-color {
    color: var(--primary-color);
}