* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #ffffff;
    background-color: #1c1c1e;
}

header {
    background-color: #2c2c2e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 2em;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header a {
    text-decoration: none;
}

.header-left {
    display: flex;
    align-items: center;
    color: #ffaa33;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: auto;
    margin-right: 0.5em;
}

.header-left h1 {
    font-size: 1.5em;
    margin: 0;
}

.header-center {
    display: flex;
    gap: 1.5em;
}

.header-center a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

.header-center a:hover {
    text-decoration: underline;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1em;
}

.header-right input[type="search"] {
    padding: 0.5em;
    padding-left: 1em;
    border-radius: 20px;
    border: 1px solid #ccc;
    background-color: #3a3a3c;
    color: #ffffff;
    outline: none;
}

.header-right input[type="search"]::placeholder {
    color: #a1a1a3;
}

.user-icon {
    width: 30px;
    height: auto;
    cursor: pointer;
    color: #ffffff;
}
