.btn-disabled {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    padding: 0 40px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    background-color: #f9f9f9;
    opacity: 0.9;
    cursor: not-allowed;
    color: #aaa;
    border: 1px solid #ccc;
}

.btn-disabled .btn-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 12px;
    pointer-events: none;
}