.header__development-bar-admin {
    width: 100%;
    background-color: #3f3f8c;
    color: #ffffff;
    font-size: 10px;
    padding-left: 10px;
}

.header__development-bar-dev {
    width: 100%;
    background-color: #ccccff;
    color: #333333;
    font-size: 10px;
    padding-left: 10px;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background-color: #ffffff;
}

@media screen and (max-width: 768px) {
    .header__container {
        padding: 1.5rem 2rem;
    }
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__logo h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.header__logo img {
    height: 30px;
    width: auto;
}

.header__logo span {
    font-size: 1.2rem;
    color: #756564;
}

@media screen and (max-width: 768px) {
    .header__logo span {
        display: none;
    }
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media screen and (max-width: 768px) {
    .header__nav {
        gap: 1rem;
    }
}

.header__auth {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media screen and (max-width: 768px) {
    .header__auth {
        gap: 1rem;
    }
}

.header__link {
    font-size: 1.2rem;
    color: #756564;
    text-decoration: none;
    flex-shrink: 0;
}

.header__link:hover {
    opacity: 0.8;
    text-decoration: underline;
    color: #756564;
}

.header__primary-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #756564;
    border-radius: 6px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
    .header__primary-button {
        font-weight: 400;
        padding: 0.6rem 0.8rem;
    }
}

.header__primary-button:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.header__profile {
    width: 100%;
}

.header__profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
}
