* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: #ffffff;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
}

.navbar-icon {
    padding: 16px;
    padding-left: 16px;
}

.navbar-center {
    display: flex;
    gap: 10px;
    padding: 16px;
}

.navbar-home-icon {
    border-radius: 9999px;
    background-color: #202020;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-input {
    width: 474px;
    height: 48px;
    display: flex;
    align-items: center;
    background-color: #202020;
    border-radius: 64px;
    padding-left: 12px;
    padding-right: 20px;
    gap: 12px;
}

.input-search {
    background: none;
    border: none;
    width: 100%;
    color: white;
    border: white;
}

.input-search:focus {
    outline: none;
}

button {
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 64px;
    border: none;
    font-weight: 1000;

}

button:hover {
    transform: scale(1.05);
}

.navbar-action{
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-container{
    display: flex;
    gap: 12px;
    height: calc(100vh - 79.99px);
}

.sidebar {
    width: 400px;
    background-color: #202020;
    border-radius: 10px;
    margin-left: 10px;
}

.main {
    width: 100%;
    background-color: #202020;
    border-radius: 10px;
}