.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 10px 14px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: #89BCD9;
    background: transparent;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.ghost-button:hover,
.mini-button:hover {
    background: rgba(142, 191, 224, 0.12);
    border-color: rgba(142, 191, 224, 0.9);
    transform: translateY(-2px);
    opacity: 1;
}

.mini-button {
    padding: 12px 24px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--text-main);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.live-test-button {
    background: #89BCD9;
    color: #262E34;
}

.live-test-button:hover {
    background: #F8F5EC;
    color: #262E34;
}

.github-button:hover {
    background: #F8F5EC1F;
}

.ghost-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
