.add-business-main {
    padding-top: 126px;
}

.account-gate {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin: 0 0 22px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #d8e3e6;
    border-left: 5px solid #176d6a;
    border-radius: 7px;
    box-shadow: 0 12px 28px rgba(31, 51, 58, 0.07);
}

.account-gate[hidden] {
    display: none;
}

.cooldown-gate {
    border-left-color: #a86400;
}

.gate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #176d6a;
    background: #e2f2ef;
    border-radius: 8px;
}

.cooldown-gate .gate-icon {
    color: #a86400;
    background: #fff3d7;
}

.account-gate h2 {
    margin: 0 0 3px;
    color: #17232b;
    font-size: 1rem;
}

.account-gate p {
    margin: 0;
    color: #62717a;
}

.gate-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    color: #fff;
    background: #176d6a;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.gate-link:hover {
    background: #105653;
}

.add-business-page .primary-btn:disabled,
.add-business-page .secondary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.business-toast {
    position: fixed;
    top: 102px;
    right: 18px;
    max-width: 340px;
    padding: 14px 16px;
    color: #fff;
    background: #176d6a;
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    z-index: 10000;
}

.business-toast.error {
    background: #b04435;
}

.business-toast.info {
    background: #225c68;
}

.score-input input[type="range"] {
    position: relative;
    z-index: 2;
    display: block;
    min-height: 20px;
    pointer-events: auto;
}

@media (max-width: 820px) {
    .add-business-main {
        padding-top: 150px;
    }

    .account-gate {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .gate-link {
        grid-column: 1 / -1;
    }
}
