.project-owner-admin-bar {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    background: #7a7a7a;
    color: #fff;
    position: sticky;
    top: 132px;
    z-index: 1000;
}

.project-owner-admin-bar__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
}

.project-owner-admin-bar__icon {
    width: 26px;
    height: 17px;
    flex-shrink: 0;
}

.project-owner-admin-bar__link {
    color: #fff;
    border: 2px solid #FFF;
    border-radius: 999px;
    padding: 0.25em 0.5em 0.25em 1em;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.25em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.project-owner-admin-bar__link-icon {
    color: inherit;
}

.project-owner-admin-bar__link:hover {
    background-color: #fff;
    color: #7a7a7a;
}

@media (max-width: 768px) {
    .project-owner-admin-bar {
        top: 87px;
    }

    .project-owner-admin-bar__inner {
        font-size: 1.4rem;
    }

    .project-owner-admin-bar__link {
        font-size: 1.2rem;
    }
}
